1
0
Fork 0

Reinstate a line which was commented out for debugging purposes

This commit is contained in:
Erik Hofman 2023-03-08 15:15:18 +01:00
parent 6357b7b629
commit c9dda8b418

View file

@ -3,6 +3,8 @@
in vec2 pos;
in vec2 textureUV;
uniform mat4 sh_Model;
uniform mat4 sh_Ortho;
uniform mat3 paintInverted;
out vec2 texImageCoord;
@ -10,7 +12,7 @@ out vec2 paintCoord;
void main()
{
// gl_Position = vec4(pos, 0, 1);
gl_Position = vec4(pos, 0, 1);
texImageCoord = textureUV;
paintCoord = (paintInverted * vec3(pos, 1)).xy;
}