Removed Unused Uniforms

uniform vec3 viewUp;
uniform float deltaTime;
This commit is contained in:
Industrious Nomad 2019-10-25 05:33:42 -04:00 committed by GitHub
parent 3d8b1165a8
commit e3fc898274
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,8 +8,6 @@ varying vec4 fragColor;
uniform vec3 viewEye;
uniform vec3 viewCenter;
uniform vec3 viewUp;
uniform float deltaTime;
uniform float runTime;
uniform vec2 resolution;
@ -428,4 +426,4 @@ void main()
#endif
gl_FragColor = vec4( tot, 1.0 );
}
}