diff options
author | Graham Linden <graham@lindenlab.com> | 2013-08-15 10:07:41 -0700 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2013-08-15 10:07:41 -0700 |
commit | 80256fdbf5fe444c177be793b12d0da58ce2b608 (patch) | |
tree | 78ca958dd7a82569334d35062b27445b9a737427 /indra/newview/app_settings | |
parent | dc63061714b0872a123ca769cd3683ab233c9915 (diff) |
NORSPEC-349 make render targets use original formats when resizing impostors and fix alpha for deferred impostor shader
Diffstat (limited to 'indra/newview/app_settings')
-rwxr-xr-x | indra/newview/app_settings/shaders/class1/deferred/impostorF.glsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/app_settings/shaders/class1/deferred/impostorF.glsl b/indra/newview/app_settings/shaders/class1/deferred/impostorF.glsl index 506323fdce..f8fdde43f9 100755 --- a/indra/newview/app_settings/shaders/class1/deferred/impostorF.glsl +++ b/indra/newview/app_settings/shaders/class1/deferred/impostorF.glsl @@ -88,7 +88,7 @@ void main() col.rgb = linear_to_srgb(col.rgb); - frag_data[0] = vec4(col.rgb, col.a); + frag_data[0] = vec4(col.rgb, 0.0); frag_data[1] = spec; frag_data[2] = vec4(norm.xy,0,0); } |