diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-04-23 13:37:03 +0100 | 
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-04-23 13:37:03 +0100 | 
| commit | f972cc4be952abc943f9d289533c9951ce4dc839 (patch) | |
| tree | 912654d1cb1fc57b62b52e4cc39e1807d12368f8 /indra/newview/app_settings/shaders/class2 | |
| parent | 95ca4315e3791fd9748edb5fe0d76719de6854ae (diff) | |
Restore a bit of the non-deferred renderer's sun/moon waterglow in deferred rendering.  This also adds a slight pinch of glow to shiny sun-spots.  So be it.
(transplanted from 5a0d9e5b5cfb2ecd96685f0275ab8e999ab86263)
Diffstat (limited to 'indra/newview/app_settings/shaders/class2')
| -rw-r--r-- | indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl b/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl index 28cfc6322e..67ef3d5280 100644 --- a/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl +++ b/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl @@ -269,6 +269,7 @@ void main()  	vec2 scol_ambocc = texture2DRect(lightMap, vary_fragcoord.xy).rg;  	float scol = max(scol_ambocc.r, diffuse.a);   	float ambocc = scol_ambocc.g; +	float glowresult = 0.0;  	calcAtmospherics(pos.xyz, ambocc); @@ -284,6 +285,7 @@ void main()  		vec3 refnormpersp = normalize(reflect(pos.xyz, norm.xyz));  		float sa = dot(refnormpersp, vary_light.xyz);  		vec3 dumbshiny = vary_SunlitColor*scol_ambocc.r*texture2D(lightFunc, vec2(sa, spec.a)).a; +		glowresult = 0.08 * dot(dumbshiny.rgb, spec.rgb);  		// screen-space cheap fakey reflection map  		// @@ -334,5 +336,5 @@ void main()  	col = scaleSoftClip(col);  	gl_FragColor.rgb = col; -	gl_FragColor.a = 0.0; +	gl_FragColor.a = glowresult;  } | 
