diff options
Diffstat (limited to 'shaders/forest.vert')
-rw-r--r-- | shaders/forest.vert | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shaders/forest.vert b/shaders/forest.vert index 8fb9528..ba2cfc4 100644 --- a/shaders/forest.vert +++ b/shaders/forest.vert @@ -7,10 +7,10 @@ layout(location = 2) in vec4 in_color ; layout(location = 1) in vec3 in_normal ; layout(location = 3) in vec2 in_texcoord ; -layout(location = 4) uniform mat4 pjMatrix ; -layout(location = 5) uniform mat4 mvMatrix ; -layout(location = 8) uniform float time ; -layout(location = 9) uniform mat3 normalMatrix ; +uniform mat4 pjMatrix ; +uniform mat4 mvMatrix ; +uniform float time ; +uniform mat3 normalMatrix ; layout(location = 10) in vec3 in_translation ; layout(location = 11) in vec3 in_scale ; |