diff options
Diffstat (limited to 'hlsl/bloom.fx')
-rw-r--r-- | hlsl/bloom.fx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hlsl/bloom.fx b/hlsl/bloom.fx index 5911e1ee8b5..db23995d55b 100644 --- a/hlsl/bloom.fx +++ b/hlsl/bloom.fx @@ -278,9 +278,7 @@ VS_OUTPUT vs_main(VS_INPUT Input) Output.TexCoord = TexCoord.xy; - TexCoord += VectorScreen - ? 0.5f / TargetDims.xy - : 0.5f / SourceDims.xy; + TexCoord += 0.5f / SourceDims; Output.BloomCoord = TexCoord.xy; |