mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 21:02:50 +00:00
efc3443c61
Although it works as intended (tested via hacking), it's not hooked up as the current frame buffer handling in r_screen is not readily compatible with how vulkan output is handled. This will need some thought to get working.
12 lines
250 B
GLSL
12 lines
250 B
GLSL
#version 450
|
|
|
|
layout (location = 0) out vec2 st;
|
|
|
|
void
|
|
main ()
|
|
{
|
|
float x = (gl_VertexIndex & 2);
|
|
float y = (gl_VertexIndex & 1);
|
|
gl_Position = vec4 (2, 4, 0, 1) * vec4 (x, y, 0, 1) - vec4 (1, 1, 0, 0);
|
|
st = vec2(1, 2) * vec2(x, y);
|
|
}
|