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

NORSPEC-261 Fix for bad legacy shiny values.

parent 320677a6
No related branches found
No related tags found
No related merge requests found
...@@ -43,10 +43,12 @@ vec2 encode_normal(vec3 n) ...@@ -43,10 +43,12 @@ vec2 encode_normal(vec3 n)
void main() void main()
{ {
vec3 col = vertex_color.rgb * diffuseLookup(vary_texcoord0.xy).rgb; vec3 col = vertex_color.rgb * diffuseLookup(vary_texcoord0.xy).rgb;
vec3 spec;
spec.rgb = vec3(vertex_color.a);
frag_data[0] = vec4(col, 0.0); frag_data[0] = vec4(col, 0.0);
frag_data[1] = vertex_color.aaaa; // spec frag_data[1] = vec4(spec, vertex_color.a); // spec
frag_data[1] = vec4(vec3(vertex_color.a), vertex_color.a+(1.0-vertex_color.a)*vertex_color.a); // spec - from former class3 - maybe better, but not so well tested
vec3 nvn = normalize(vary_normal); vec3 nvn = normalize(vary_normal);
frag_data[2] = vec4(encode_normal(nvn.xyz), vertex_color.a, 0.0); frag_data[2] = vec4(encode_normal(nvn.xyz), vertex_color.a, 0.0);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment