removed extranious comments
authormatthew <matthew@owens.tech>
Sat, 3 Nov 2018 16:12:40 +0000 (16:12 +0000)
committermatthew <matthew@owens.tech>
Sat, 3 Nov 2018 16:12:40 +0000 (16:12 +0000)
shaders/crate/crate.vert

index c58ceb7..22ba628 100644 (file)
@@ -8,8 +8,6 @@ uniform mat4 camera;
 
 void main()
 {
-       //gl_Position = transform * vec4(aPos, 1.0);
        gl_Position = camera * transform * vec4(aPos, 1.0);
-       //gl_Position = camera * vec4(aPos, 1.0);
        vTex = aTex;
 }