2019-07-05 03:54:32 +02:00
|
|
|
/* clang-format off */
|
|
|
|
[vertex]
|
|
|
|
|
|
|
|
#version 450
|
|
|
|
|
|
|
|
layout(location = 0) in highp vec3 vertex;
|
2019-11-05 12:01:00 +01:00
|
|
|
/* clang-format on */
|
2019-07-05 03:54:32 +02:00
|
|
|
|
|
|
|
layout(push_constant, binding = 0, std430) uniform Constants {
|
|
|
|
|
|
|
|
mat4 projection;
|
2019-07-07 06:49:40 +02:00
|
|
|
mat2x4 modelview;
|
|
|
|
vec2 direction;
|
|
|
|
vec2 pad;
|
2019-07-05 03:54:32 +02:00
|
|
|
} constants;
|
|
|
|
|
|
|
|
layout(location = 0) out highp float depth;
|
|
|
|
|
|
|
|
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));
|
|
|
|
depth = dot(constants.direction, vtx.xy);
|
2019-07-05 03:54:32 +02:00
|
|
|
|
|
|
|
gl_Position = constants.projection * vtx;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* clang-format off */
|
|
|
|
[fragment]
|
|
|
|
|
|
|
|
#version 450
|
|
|
|
|
|
|
|
layout(location = 0) in highp float depth;
|
2019-11-05 12:01:00 +01:00
|
|
|
/* clang-format on */
|
2019-07-05 03:54:32 +02:00
|
|
|
layout(location = 0) out highp float distance_buf;
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
|
2019-11-05 12:01:00 +01:00
|
|
|
distance_buf = depth;
|
2019-07-05 03:54:32 +02:00
|
|
|
}
|