Removed Unused uniforms

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

View File

@ -9,8 +9,6 @@ out vec4 finalColor;
uniform vec3 viewEye; uniform vec3 viewEye;
uniform vec3 viewCenter; uniform vec3 viewCenter;
uniform vec3 viewUp;
uniform float deltaTime;
uniform float runTime; uniform float runTime;
uniform vec2 resolution; uniform vec2 resolution;
@ -429,4 +427,4 @@ void main()
#endif #endif
finalColor = vec4( tot, 1.0 ); finalColor = vec4( tot, 1.0 );
} }