started fxaa shaders

This commit is contained in:
j3oss
2021-07-19 05:19:50 +02:00
parent 06b02f5200
commit 94c07145a6
2 changed files with 17 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#version 450
layout(location = 0) out vec4 outColor;
void main()
{
//outColor = vec4(1.0);
}
+9
View File
@@ -0,0 +1,9 @@
#version 450
layout (location = 0) out vec2 outUV;
void main()
{
//outUV = vec2((gl_VertexIndex << 1) & 2, gl_VertexIndex & 2);
//gl_Position = vec4(outUV * 2.0f - 1.0f, 0.0f, 1.0f);
}