summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2011-06-09 00:20:52 -0500
committerDave Parks <davep@lindenlab.com>2011-06-09 00:20:52 -0500
commit57521d594c5c77048fc3d82358159eb2acbc1c9e (patch)
tree11bd25fb15285fb24d8ffbedf47eb97bd1cf2b50
parent7f36558d80d526502d8be3693b2ba0e8f09314c9 (diff)
Fix for accidental checkin of hot pink fullbright.
-rw-r--r--indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl3
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl b/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl
index 5e6c5ebec8..d781e08548 100644
--- a/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl
+++ b/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl
@@ -23,7 +23,6 @@ void main()
color.rgb = fullbrightScaleSoftClip(color.rgb);
- //gl_FragColor = color;
- gl_FragColor = vec4(1,0,1,1);
+ gl_FragColor = color;
}