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

SH-2546 Fix for black avatars and terrain on GF Go 7800 (use vec3 instead of...

SH-2546 Fix for black avatars and terrain on GF Go 7800 (use vec3 instead of float on varying parameters).
parent 5406ebad
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
VARYING vec3 vary_SunlitColor; VARYING vec3 vary_SunlitColor;
VARYING vec3 vary_AdditiveColor; VARYING vec3 vary_AdditiveColor;
VARYING float vary_AtmosAttenuation; VARYING vec3 vary_AtmosAttenuation;
vec3 getSunlitColor() vec3 getSunlitColor()
{ {
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
VARYING vec3 vary_AdditiveColor; VARYING vec3 vary_AdditiveColor;
VARYING float vary_AtmosAttenuation; VARYING vec3 vary_AtmosAttenuation;
vec3 additive_color; vec3 additive_color;
vec3 atmos_attenuation; vec3 atmos_attenuation;
...@@ -80,5 +80,5 @@ void setAdditiveColor(vec3 v) ...@@ -80,5 +80,5 @@ void setAdditiveColor(vec3 v)
void setAtmosAttenuation(vec3 v) void setAtmosAttenuation(vec3 v)
{ {
atmos_attenuation = v; atmos_attenuation = v;
vary_AtmosAttenuation = v.r; vary_AtmosAttenuation = v;
} }
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