mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
e709eceb75
I had missed them earlier as I had forgotten about them (looked only at vertex shaders).
55 lines
1.1 KiB
GLSL
55 lines
1.1 KiB
GLSL
#version 450
|
|
#extension GL_GOOGLE_include_directive : enable
|
|
|
|
layout (set = 0, binding = 0) uniform
|
|
#include "matrices.h"
|
|
;
|
|
|
|
layout (points) in;
|
|
layout (triangle_strip, max_vertices = 4) out;
|
|
layout (location = 0) in vec4 velocity[];
|
|
layout (location = 1) in vec4 color[];
|
|
layout (location = 2) in vec4 ramp[];
|
|
|
|
layout (location = 0) out vec4 uv_tr;
|
|
layout (location = 1) out vec4 o_color;
|
|
|
|
void
|
|
main()
|
|
{
|
|
vec4 pos = gl_in[0].gl_Position;
|
|
vec4 tr = vec4 (0, 0, ramp[0].xy);
|
|
float s = ramp[0].z;
|
|
vec4 d, p;
|
|
vec4 c = color[0];
|
|
|
|
d = vec4 (-1, 1, 0, 0);
|
|
p = pos + s * d;
|
|
gl_Position = Projection3d * p;
|
|
uv_tr = d + tr;
|
|
o_color = c;
|
|
EmitVertex ();
|
|
|
|
d = vec4 (-1, -1, 0, 0);
|
|
p = pos + s * d;
|
|
gl_Position = Projection3d * p;
|
|
uv_tr = d + tr;
|
|
o_color = c;
|
|
EmitVertex ();
|
|
|
|
d = vec4 (1, 1, 0, 0);
|
|
p = pos + s * d;
|
|
gl_Position = Projection3d * p;
|
|
uv_tr = d + tr;
|
|
o_color = c;
|
|
EmitVertex ();
|
|
|
|
d = vec4 (1, -1, 0, 0);
|
|
p = pos + s * d;
|
|
gl_Position = Projection3d * p;
|
|
uv_tr = d + tr;
|
|
o_color = c;
|
|
EmitVertex ();
|
|
|
|
EndPrimitive ();
|
|
}
|