diff options
author | 2013-01-21 02:40:48 +0000 | |
---|---|---|
committer | 2013-01-21 02:40:48 +0000 | |
commit | d157249cb74fe849effaef21c1676a8cf17474e4 (patch) | |
tree | db3388ea55fde34ff34e5f9f42da0521ebc6ea5e /hlsl/post.fx | |
parent | 7f3372abf3800e185fa56b51d137e0c47e3357df (diff) |
d3dhlsl.c: Add preliminary vector post-processing. [MooglyGuy]
Diffstat (limited to 'hlsl/post.fx')
-rw-r--r-- | hlsl/post.fx | 1 |
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; } |