summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings
diff options
context:
space:
mode:
authorGraham Linden <graham@lindenlab.com>2013-08-15 10:07:41 -0700
committerGraham Linden <graham@lindenlab.com>2013-08-15 10:07:41 -0700
commit80256fdbf5fe444c177be793b12d0da58ce2b608 (patch)
tree78ca958dd7a82569334d35062b27445b9a737427 /indra/newview/app_settings
parentdc63061714b0872a123ca769cd3683ab233c9915 (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-xindra/newview/app_settings/shaders/class1/deferred/impostorF.glsl2
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);
}