summaryrefslogtreecommitdiffhomepage
path: root/examples/resources/shaders/phong.vs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/resources/shaders/phong.vs')
-rw-r--r--examples/resources/shaders/phong.vs5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/resources/shaders/phong.vs b/examples/resources/shaders/phong.vs
index c6ef77de..ee6d34bf 100644
--- a/examples/resources/shaders/phong.vs
+++ b/examples/resources/shaders/phong.vs
@@ -7,7 +7,6 @@ in vec3 vertexNormal;
// Projection and model data
uniform mat4 mvpMatrix;
-
uniform mat4 modelMatrix;
// Attributes to fragment shader
@@ -21,8 +20,8 @@ void main()
// Calculate view vector normal from model
mat3 normalMatrix = transpose(inverse(mat3(modelMatrix)));
- fragNormal = normalize(normalMatrix * vertexNormal);
+ fragNormal = normalize(normalMatrix*vertexNormal);
// Calculate final vertex position
- gl_Position = projectionMatrix * modelviewMatrix * vec4(vertexPosition, 1.0);
+ gl_Position = mvpMatrix*vec4(vertexPosition, 1.0);
} \ No newline at end of file