summaryrefslogtreecommitdiffstatshomepage
path: root/hlsl/post.fx
diff options
context:
space:
mode:
Diffstat (limited to 'hlsl/post.fx')
-rw-r--r--hlsl/post.fx1
1 files changed, 1 insertions, 0 deletions
diff --git a/hlsl/post.fx b/hlsl/post.fx
index 94c039219e6..4176a78b197 100644
--- a/hlsl/post.fx
+++ b/hlsl/post.fx
@@ -180,6 +180,7 @@ float4 ps_main(PS_INPUT Input) : COLOR
Output.r = pow(Output.r, Power.r);
Output.g = pow(Output.g, Power.g);
Output.b = pow(Output.b, Power.b);
+ Output.a = 1.0f;
return Output;
}