summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class1/deferred/diffuseF.glsl
diff options
context:
space:
mode:
authorBrad Kittenbrink <brad@lindenlab.com>2009-02-18 21:10:16 +0000
committerBrad Kittenbrink <brad@lindenlab.com>2009-02-18 21:10:16 +0000
commitabdc99f21b542c4fea67030ddbd7166c9d1c6c63 (patch)
tree3e984e405adfdec189ca8a047daca5250737ffbf /indra/newview/app_settings/shaders/class1/deferred/diffuseF.glsl
parent34412f0530cf6a411b4de906a8e9da59cbcb3a85 (diff)
Merge of QAR-1267 to trunk. This was a combo merge of QAR-1175 (maint-render-9) and QAR-1236 (dll-msvcrt-2)
svn merge -r 109838:112264 svn+ssh://svn.lindenlab.com/svn/linden/branches/maint-render/maint-render-9-merge-r109833
Diffstat (limited to 'indra/newview/app_settings/shaders/class1/deferred/diffuseF.glsl')
-rw-r--r--indra/newview/app_settings/shaders/class1/deferred/diffuseF.glsl8
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/app_settings/shaders/class1/deferred/diffuseF.glsl b/indra/newview/app_settings/shaders/class1/deferred/diffuseF.glsl
index 14e6361f83..f2ba2df69a 100644
--- a/indra/newview/app_settings/shaders/class1/deferred/diffuseF.glsl
+++ b/indra/newview/app_settings/shaders/class1/deferred/diffuseF.glsl
@@ -8,9 +8,13 @@
uniform sampler2D diffuseMap;
varying vec3 vary_normal;
+varying vec4 vary_position;
void main()
{
- gl_FragColor = gl_Color * texture2D(diffuseMap, gl_TexCoord[0].xy);
- gl_FragColor.rgb = vary_normal*0.5+0.5;
+ vec3 col = texture2D(diffuseMap, gl_TexCoord[0].xy).rgb;
+ gl_FragData[0] = vec4(gl_Color.rgb*col, 1.0);
+ gl_FragData[1] = vec4(col*(gl_Color.a*1.5), gl_Color.a);
+ gl_FragData[2] = vec4(normalize(vary_normal), 0.0);
+ gl_FragData[3] = vary_position;
}