gamma correction in post when there's no sRGB framebuffer and simple shader compositi...
[vrfileman] / sdr / post.v.glsl
1 uniform mat4 texmat;
2
3 void main()
4 {
5         gl_Position = gl_Vertex;
6         gl_TexCoord[0] = texmat * gl_MultiTexCoord0;
7 }