2019-06-16 04:45:24 +02:00
|
|
|
|
|
|
|
/* SET0: Per draw primitive settings */
|
|
|
|
|
2019-07-05 03:54:32 +02:00
|
|
|
#define M_PI 3.14159265359
|
2019-06-16 04:45:24 +02:00
|
|
|
|
2019-07-05 03:54:32 +02:00
|
|
|
#define MAX_LIGHT_TEXTURES 1024
|
|
|
|
#define MAX_RENDER_LIGHTS 256
|
2019-06-16 04:45:24 +02:00
|
|
|
|
|
|
|
#define FLAGS_INSTANCING_STRIDE_MASK 0xF
|
|
|
|
#define FLAGS_INSTANCING_ENABLED (1<<4)
|
|
|
|
#define FLAGS_INSTANCING_HAS_COLORS (1 << 5)
|
|
|
|
#define FLAGS_INSTANCING_COLOR_8BIT (1 << 6)
|
|
|
|
#define FLAGS_INSTANCING_HAS_CUSTOM_DATA (1 << 7)
|
|
|
|
#define FLAGS_INSTANCING_CUSTOM_DATA_8_BIT (1 << 8)
|
|
|
|
|
|
|
|
#define FLAGS_CLIP_RECT_UV (1 << 9)
|
|
|
|
#define FLAGS_TRANSPOSE_RECT (1 << 10)
|
2019-07-05 03:54:32 +02:00
|
|
|
#define FLAGS_USING_LIGHT_MASK (1 << 11)
|
2019-06-16 04:45:24 +02:00
|
|
|
#define FLAGS_NINEPACH_DRAW_CENTER (1 << 12)
|
|
|
|
#define FLAGS_USING_PARTICLES (1 << 13)
|
|
|
|
#define FLAGS_USE_PIXEL_SNAP (1 << 14)
|
|
|
|
|
2019-06-19 22:03:19 +02:00
|
|
|
#define FLAGS_NINEPATCH_H_MODE_SHIFT 16
|
|
|
|
#define FLAGS_NINEPATCH_V_MODE_SHIFT 18
|
2019-06-16 04:45:24 +02:00
|
|
|
|
2019-06-26 20:11:52 +02:00
|
|
|
#define FLAGS_LIGHT_COUNT_SHIFT 20
|
|
|
|
|
2019-07-05 03:54:32 +02:00
|
|
|
#define FLAGS_DEFAULT_NORMAL_MAP_USED (1 << 26)
|
|
|
|
#define FLAGS_DEFAULT_SPECULAR_MAP_USED (1 << 27)
|
|
|
|
|
2019-06-24 21:13:06 +02:00
|
|
|
layout(push_constant, binding = 0, std430) uniform DrawData {
|
|
|
|
vec2 world_x;
|
|
|
|
vec2 world_y;
|
|
|
|
vec2 world_ofs;
|
|
|
|
uint flags;
|
|
|
|
uint specular_shininess;
|
|
|
|
#ifdef USE_PRIMITIVE
|
2019-06-26 20:11:52 +02:00
|
|
|
vec2 points[3];
|
|
|
|
vec2 uvs[3];
|
|
|
|
uint colors[6];
|
2019-06-24 21:13:06 +02:00
|
|
|
#else
|
2019-06-16 04:45:24 +02:00
|
|
|
vec4 modulation;
|
|
|
|
vec4 ninepatch_margins;
|
|
|
|
vec4 dst_rect; //for built-in rect and UV
|
|
|
|
vec4 src_rect;
|
2019-06-26 20:11:52 +02:00
|
|
|
vec2 pad;
|
|
|
|
|
2019-06-24 21:13:06 +02:00
|
|
|
#endif
|
2019-06-26 20:11:52 +02:00
|
|
|
vec2 color_texture_pixel_size;
|
|
|
|
uint lights[4];
|
2019-06-19 22:03:19 +02:00
|
|
|
|
2019-06-16 04:45:24 +02:00
|
|
|
} draw_data;
|
|
|
|
|
|
|
|
// The values passed per draw primitives are cached within it
|
|
|
|
|
|
|
|
layout(set = 0, binding = 1) uniform texture2D color_texture;
|
|
|
|
layout(set = 0, binding = 2) uniform texture2D normal_texture;
|
|
|
|
layout(set = 0, binding = 3) uniform texture2D specular_texture;
|
|
|
|
layout(set = 0, binding = 4) uniform sampler texture_sampler;
|
|
|
|
|
|
|
|
layout(set = 0, binding = 5) uniform textureBuffer instancing_buffer;
|
|
|
|
|
|
|
|
/* SET1: Is reserved for the material */
|
|
|
|
|
|
|
|
//
|
|
|
|
|
2019-06-24 21:13:06 +02:00
|
|
|
/* SET2: Is the skeleton */
|
|
|
|
|
|
|
|
#ifdef USE_ATTRIBUTES
|
2019-06-16 04:45:24 +02:00
|
|
|
|
2019-06-24 21:13:06 +02:00
|
|
|
layout(set = 2, binding = 0) uniform textureBuffer skeleton_buffer;
|
2019-06-16 04:45:24 +02:00
|
|
|
|
2019-06-24 21:13:06 +02:00
|
|
|
layout(set = 2, binding = 1, std140) uniform SkeletonData {
|
|
|
|
mat4 skeleton_transform; //in world coordinates
|
2019-06-16 04:45:24 +02:00
|
|
|
mat4 skeleton_transform_inverse;
|
|
|
|
} skeleton_data;
|
|
|
|
|
2019-06-24 21:13:06 +02:00
|
|
|
#endif
|
2019-06-16 04:45:24 +02:00
|
|
|
|
|
|
|
/* SET3: Per Scene settings */
|
|
|
|
|
|
|
|
layout(set = 3, binding = 0, std140) uniform CanvasData {
|
|
|
|
mat4 canvas_transform;
|
|
|
|
mat4 screen_transform;
|
2019-07-05 03:54:32 +02:00
|
|
|
mat4 canvas_normal_transform;
|
|
|
|
vec4 canvas_modulation;
|
2019-06-16 04:45:24 +02:00
|
|
|
//uint light_count;
|
|
|
|
} canvas_data;
|
|
|
|
|
2019-07-05 03:54:32 +02:00
|
|
|
#define LIGHT_FLAGS_TEXTURE_MASK 0xFFFF
|
|
|
|
#define LIGHT_FLAGS_BLEND_MASK (3<<16)
|
|
|
|
#define LIGHT_FLAGS_BLEND_MODE_ADD (0<<16)
|
|
|
|
#define LIGHT_FLAGS_BLEND_MODE_SUB (1<<16)
|
|
|
|
#define LIGHT_FLAGS_BLEND_MODE_MIX (2<<16)
|
|
|
|
#define LIGHT_FLAGS_BLEND_MODE_MASK (3<<16)
|
2019-07-07 06:49:40 +02:00
|
|
|
#define LIGHT_FLAGS_HAS_SHADOW (1<<20)
|
|
|
|
#define LIGHT_FLAGS_FILTER_SHIFT 22
|
|
|
|
#define LIGHT_FLAGS_FILTER_MASK (3<<22)
|
|
|
|
#define LIGHT_FLAGS_SHADOW_NEAREST (0<<22)
|
|
|
|
#define LIGHT_FLAGS_SHADOW_PCF5 (1<<22)
|
|
|
|
#define LIGHT_FLAGS_SHADOW_PCF13 (2<<22)
|
2019-07-05 03:54:32 +02:00
|
|
|
|
|
|
|
|
2019-06-16 04:45:24 +02:00
|
|
|
struct Light {
|
2019-07-07 06:49:40 +02:00
|
|
|
mat2x4 matrix; //light to texture coordinate matrix (transposed)
|
|
|
|
mat2x4 shadow_matrix; //light to shadow coordinate matrix (transposed)
|
2019-07-05 03:54:32 +02:00
|
|
|
vec4 color;
|
|
|
|
vec4 shadow_color;
|
|
|
|
vec2 position;
|
|
|
|
uint flags; //index to light texture
|
|
|
|
float height;
|
|
|
|
float shadow_softness;
|
|
|
|
float shadow_pixel_size;
|
|
|
|
float pad0;
|
|
|
|
float pad1;
|
2019-06-16 04:45:24 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
layout(set = 3, binding = 1, std140) uniform LightData {
|
2019-07-05 03:54:32 +02:00
|
|
|
Light data[MAX_RENDER_LIGHTS];
|
|
|
|
} light_array;
|
2019-06-16 04:45:24 +02:00
|
|
|
|
2019-07-05 03:54:32 +02:00
|
|
|
layout(set = 3, binding = 2) uniform texture2D light_textures[MAX_LIGHT_TEXTURES];
|
|
|
|
layout(set = 3, binding = 3) uniform texture2D shadow_textures[MAX_LIGHT_TEXTURES];
|
2019-07-08 14:53:40 +02:00
|
|
|
|
|
|
|
layout(set = 3, binding = 4) uniform sampler shadow_sampler;
|