diff options
| author | Tofu Buzzard <no-email> | 2011-01-21 18:29:25 +0000 | 
|---|---|---|
| committer | Tofu Buzzard <no-email> | 2011-01-21 18:29:25 +0000 | 
| commit | f810c851ed2242a48ba7372093f8d79a737d15cd (patch) | |
| tree | 4f96eba41e84ce763ddbb3d65b286d06c5e5165b /indra | |
| parent | 1426bcbae4ff6fad8383b857a6697abcbe243116 (diff) | |
adjust SSAO towards a stronger, darker effect curve
(transplanted from 4b7066a9a309fa82727c0b403cc6f20720077dc0)
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/app_settings/shaders/class1/deferred/blurLightF.glsl | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/indra/newview/app_settings/shaders/class1/deferred/blurLightF.glsl b/indra/newview/app_settings/shaders/class1/deferred/blurLightF.glsl index 6859f72a9c..8dc9e98e05 100644 --- a/indra/newview/app_settings/shaders/class1/deferred/blurLightF.glsl +++ b/indra/newview/app_settings/shaders/class1/deferred/blurLightF.glsl @@ -81,6 +81,7 @@ void main()  	}  	col /= defined_weight.xyxx; +	col.y *= col.y;  	gl_FragColor = col;  } | 
