Handle loading of embedded textures
[opengl.git] / brdfvert.glsl
1 #version 330
2
3 in vec2 pos;
4 out vec2 texCoords;
5
6 void main() {
7         texCoords = (pos + 1) / 2;
8         gl_Position = vec4(pos, 0, 1);
9 }