diff options
author | Dave Parks <davep@lindenlab.com> | 2011-08-19 15:00:48 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-08-19 15:00:48 -0500 |
commit | 0e496309d6cb7581c9f69b7da244699c382750ac (patch) | |
tree | ea8f36edbac232448d2aa1d7f7d407d9df999b6e /indra/newview/app_settings/shaders/class2/lighting/lightFullbrightWaterAlphaMaskF.glsl | |
parent | f40d2c5afb78f4a17b4753c42f6756dbd76a18c8 (diff) | |
parent | 428c762a3ea6caec277d915b8b175403cf3f52dd (diff) |
merge
Diffstat (limited to 'indra/newview/app_settings/shaders/class2/lighting/lightFullbrightWaterAlphaMaskF.glsl')
-rw-r--r-- | indra/newview/app_settings/shaders/class2/lighting/lightFullbrightWaterAlphaMaskF.glsl | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/indra/newview/app_settings/shaders/class2/lighting/lightFullbrightWaterAlphaMaskF.glsl b/indra/newview/app_settings/shaders/class2/lighting/lightFullbrightWaterAlphaMaskF.glsl new file mode 100644 index 0000000000..e4cea077f9 --- /dev/null +++ b/indra/newview/app_settings/shaders/class2/lighting/lightFullbrightWaterAlphaMaskF.glsl @@ -0,0 +1,29 @@ +/** + * @file lightFullbrightWaterAlphaMaskF.glsl + * + * $LicenseInfo:firstyear=2007&license=viewerlgpl$ + * $/LicenseInfo$ + */ + +uniform float minimum_alpha; +uniform float maximum_alpha; + +vec4 diffuseLookup(vec2 texcoord); + +vec3 fullbrightAtmosTransport(vec3 light); +vec4 applyWaterFog(vec4 color); + +void fullbright_lighting_water() +{ + vec4 color = diffuseLookup(gl_TexCoord[0].xy) * gl_Color; + + if (color.a < minimum_alpha || color.a > maximum_alpha) + { + discard; + } + + color.rgb = fullbrightAtmosTransport(color.rgb); + + gl_FragColor = applyWaterFog(color); +} + |