fix indentation
This commit is contained in:
parent
7759d27cc2
commit
5d2c95415e
|
@ -283,16 +283,16 @@ void main(){
|
|||
vec2 screenSize05 = 0.5 * u_screenSize2f;
|
||||
|
||||
vec4 posPos;
|
||||
posPos.xy = v_position2f - screenSize05;
|
||||
posPos.zw = v_position2f + screenSize05;
|
||||
posPos.xy = v_position2f - screenSize05;
|
||||
posPos.zw = v_position2f + screenSize05;
|
||||
|
||||
vec4 rcpFrameOpt;
|
||||
rcpFrameOpt.xy = -screenSize05;
|
||||
rcpFrameOpt.zw = screenSize05;
|
||||
vec4 rcpFrameOpt;
|
||||
rcpFrameOpt.xy = -screenSize05;
|
||||
rcpFrameOpt.zw = screenSize05;
|
||||
|
||||
vec4 rcpFrameOpt2;
|
||||
rcpFrameOpt2.xy = vec2(-2.0, -2.0) * u_screenSize2f;
|
||||
rcpFrameOpt2.zw = -rcpFrameOpt2.xy;
|
||||
vec4 rcpFrameOpt2;
|
||||
rcpFrameOpt2.xy = vec2(-2.0, -2.0) * u_screenSize2f;
|
||||
rcpFrameOpt2.zw = -rcpFrameOpt2.xy;
|
||||
|
||||
output4f = vec4(FxaaPixelShader(v_position2f + screenSize05, posPos, u_screenTexture, rcpFrameOpt, rcpFrameOpt2, edgeSharpness, edgeThreshold, edgeThresholdMin).rgb, 1.0);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user