2020-05-18 10:56:22 +02:00
|
|
|
#[vertex]
|
2019-07-05 03:54:32 +02:00
|
|
|
|
|
|
|
#version 450
|
|
|
|
|
2021-04-13 22:01:43 +02:00
|
|
|
#VERSION_DEFINES
|
2020-11-26 13:50:21 +01:00
|
|
|
|
2019-07-05 03:54:32 +02:00
|
|
|
layout(location = 0) in highp vec3 vertex;
|
|
|
|
|
2022-02-11 18:40:24 +01:00
|
|
|
layout(push_constant, std430) uniform Constants {
|
2019-07-05 03:54:32 +02:00
|
|
|
mat4 projection;
|
2019-07-07 06:49:40 +02:00
|
|
|
mat2x4 modelview;
|
|
|
|
vec2 direction;
|
2020-10-24 17:15:43 +02:00
|
|
|
float z_far;
|
|
|
|
float pad;
|
2020-02-11 14:01:43 +01:00
|
|
|
}
|
|
|
|
constants;
|
2019-07-05 03:54:32 +02:00
|
|
|
|
2020-11-26 13:50:21 +01:00
|
|
|
#ifdef MODE_SHADOW
|
2019-07-05 03:54:32 +02:00
|
|
|
layout(location = 0) out highp float depth;
|
2020-11-26 13:50:21 +01:00
|
|
|
#endif
|
2019-07-05 03:54:32 +02:00
|
|
|
|
|
|
|
void main() {
|
2019-11-05 12:01:00 +01:00
|
|
|
highp vec4 vtx = vec4(vertex, 1.0) * mat4(constants.modelview[0], constants.modelview[1], vec4(0.0, 0.0, 1.0, 0.0), vec4(0.0, 0.0, 0.0, 1.0));
|
2019-07-05 03:54:32 +02:00
|
|
|
|
2020-11-26 13:50:21 +01:00
|
|
|
#ifdef MODE_SHADOW
|
|
|
|
depth = dot(constants.direction, vtx.xy);
|
|
|
|
#endif
|
2019-07-05 03:54:32 +02:00
|
|
|
gl_Position = constants.projection * vtx;
|
|
|
|
}
|
|
|
|
|
2020-05-18 10:56:22 +02:00
|
|
|
#[fragment]
|
2019-07-05 03:54:32 +02:00
|
|
|
|
|
|
|
#version 450
|
|
|
|
|
2021-04-13 22:01:43 +02:00
|
|
|
#VERSION_DEFINES
|
2020-11-26 13:50:21 +01:00
|
|
|
|
2022-02-11 18:40:24 +01:00
|
|
|
layout(push_constant, std430) uniform Constants {
|
2020-10-24 17:15:43 +02:00
|
|
|
mat4 projection;
|
|
|
|
mat2x4 modelview;
|
|
|
|
vec2 direction;
|
|
|
|
float z_far;
|
|
|
|
float pad;
|
|
|
|
}
|
|
|
|
constants;
|
|
|
|
|
2020-11-26 13:50:21 +01:00
|
|
|
#ifdef MODE_SHADOW
|
2019-07-05 03:54:32 +02:00
|
|
|
layout(location = 0) in highp float depth;
|
|
|
|
layout(location = 0) out highp float distance_buf;
|
2020-11-26 13:50:21 +01:00
|
|
|
#else
|
|
|
|
layout(location = 0) out highp float sdf_buf;
|
|
|
|
#endif
|
2019-07-05 03:54:32 +02:00
|
|
|
|
|
|
|
void main() {
|
2020-11-26 13:50:21 +01:00
|
|
|
#ifdef MODE_SHADOW
|
2020-10-24 17:15:43 +02:00
|
|
|
distance_buf = depth / constants.z_far;
|
2020-11-26 13:50:21 +01:00
|
|
|
#else
|
|
|
|
sdf_buf = 1.0;
|
|
|
|
#endif
|
2019-07-05 03:54:32 +02:00
|
|
|
}
|