summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl
diff options
context:
space:
mode:
authorGraham Madarasz <graham@lindenlab.com>2013-05-08 12:53:47 -0700
committerGraham Madarasz <graham@lindenlab.com>2013-05-08 12:53:47 -0700
commit415599b54d2450e915870b1a16065340fad53f4c (patch)
tree81760cce54c943b382c5784278410c93d0048fc2 /indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl
parentfd8b34e44b9acce23b2c2405ce9f1ad22b71b5b5 (diff)
NORSPEC-156 back to the fix that actually works
Diffstat (limited to 'indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl')
-rwxr-xr-xindra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl5
1 files changed, 4 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 bb28f02aab..cb050c800f 100755
--- a/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl
+++ b/indra/newview/app_settings/shaders/class1/deferred/fullbrightF.glsl
@@ -42,9 +42,12 @@ void main()
{
float shadow = 1.0;
- vec4 color = diffuseLookup(vary_texcoord0.xy)* vertex_color;
+ vec4 color = diffuseLookup(vary_texcoord0.xy) * pow(vertex_color.rgb,vec3(2.2f));
+
color.rgb = fullbrightAtmosTransport(color.rgb);
+
color.rgb = fullbrightScaleSoftClip(color.rgb);
+
frag_color = color;
}