diff options
| author | Graham Linden <graham@lindenlab.com> | 2013-07-08 12:17:41 -0700 | 
|---|---|---|
| committer | Graham Linden <graham@lindenlab.com> | 2013-07-08 12:17:41 -0700 | 
| commit | b32f879a6d60fcb9a34435b2b7e9a4509fd32cc6 (patch) | |
| tree | d3da743dad0f452169566eb20cdee613d9506a7b | |
| parent | cbf72809061ce2e9f33e743bdee63ae75d4ff74e (diff) | |
NORSPEC-293 WIP fix black glowing fullbright, does not address deferred glow errors
| -rwxr-xr-x | indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl | 2 | 
1 files changed, 1 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 ec25f52ef5..90518128fb 100755 --- a/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl +++ b/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl @@ -70,10 +70,10 @@ void main()  #endif  	color.rgb = srgb_to_linear(color.rgb); -	color.rgb *= vertex_color.rgb;  	color.rgb = fullbrightAtmosTransport(color.rgb);  	color.rgb = fullbrightScaleSoftClip(color.rgb); +	color.rgb *= vertex_color.rgb;  	color.rgb = linear_to_srgb(color.rgb); | 
