summaryrefslogtreecommitdiff
path: root/assets/shaders/present.vert
diff options
context:
space:
mode:
Diffstat (limited to 'assets/shaders/present.vert')
-rw-r--r--assets/shaders/present.vert8
1 files changed, 4 insertions, 4 deletions
diff --git a/assets/shaders/present.vert b/assets/shaders/present.vert
index 5423fcf..a5d60d0 100644
--- a/assets/shaders/present.vert
+++ b/assets/shaders/present.vert
@@ -4,11 +4,11 @@ layout (location = 0) out vec2 outUV;
out gl_PerVertex
{
- vec4 gl_Position;
+ vec4 gl_Position;
};
void main()
{
- outUV = vec2((gl_VertexIndex << 1) & 2, gl_VertexIndex & 2);
- gl_Position = vec4(outUV * 2.0f - 1.0f, 0.0f, 1.0f);
-} \ No newline at end of file
+ outUV = vec2((gl_VertexIndex << 1) & 2, gl_VertexIndex & 2);
+ gl_Position = vec4(outUV * 2.0f - 1.0f, 0.0f, 1.0f);
+}