Skip to content
Snippets Groups Projects
Commit 06367e6f authored by David Parks's avatar David Parks
Browse files

SH-2276 Clean up a shader warning.

parent 7b6723d1
Branches
Tags
No related merge requests found
......@@ -36,9 +36,7 @@ uniform vec3 light_diffuse[8];
vec4 sumLightsSpecular(vec3 pos, vec3 norm, vec4 color, inout vec4 specularColor, vec4 baseCol)
{
vec4 col;
col.a = color.a;
vec4 col = vec4(0,0,0, color.a);
vec3 view = normalize(pos);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment