diff options
| -rwxr-xr-x | indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl b/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl index cb050c800f..c5513414dd 100755 --- a/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl +++ b/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl @@ -42,7 +42,8 @@ void main()  {  	float shadow = 1.0; -	vec4 color = diffuseLookup(vary_texcoord0.xy) * pow(vertex_color.rgb,vec3(2.2f)); +	vec3 vcolor = pow(vertex_color.rgb, vec3(2.2f,2.2f,2.2f)); +	vec4 color = diffuseLookup(vary_texcoord0.xy) * vec4(vcolor.rgb,1.0f);  	color.rgb = fullbrightAtmosTransport(color.rgb); | 
