diff options
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/quad.vert | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/quad.vert b/resources/quad.vert index 4aaf59c..7e5ead0 100644 --- a/resources/quad.vert +++ b/resources/quad.vert @@ -9,8 +9,8 @@ uniform mat4 MVP; void main() { gl_Position = - //MVP * vec4( pos.x, 1, pos.y, 1); - vec4(pos.x, 1.0, pos.y, 1.0); + MVP * vec4( pos.x, 1, pos.y, 1); + //vec4(pos.x, 1.0, pos.y, 1.0); fragColor.x = gl_Position.x; fragColor.y = gl_Position.y; |
