We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1b0bbf commit 9adffb7Copy full SHA for 9adffb7
crates/bevy_core_pipeline/src/fxaa/fxaa.wgsl
@@ -77,7 +77,6 @@ fn rgb2luma(rgb: vec3<f32>) -> f32 {
77
@fragment
78
fn fragment(in: FullscreenVertexOutput) -> @location(0) vec4<f32> {
79
let resolution = vec2<f32>(textureDimensions(screenTexture));
80
- let fragCoord = in.position.xy;
81
let inverseScreenSize = 1.0 / resolution.xy;
82
let texCoord = in.position.xy * inverseScreenSize;
83
0 commit comments