Clay: Fix alpha problem cause by FXAA pass.

This commit is contained in:
Clément Foucault 2018-03-25 03:17:05 +02:00
parent f63bb98223
commit 6d6c292cf8
1 changed files with 2 additions and 2 deletions

View File

@ -7,12 +7,12 @@ uniform sampler2D colortex;
void main()
{
fragColor = FxaaPixelShader(
fragColor = vec4(FxaaPixelShader(
uvcoordsvar.st,
colortex,
invscreenres,
1.0,
0.166,
0.0833
);
).rgb, 1.0);
}