From e66d69c3b2124ddb2cd6f71ead9d7b4474fe7849 Mon Sep 17 00:00:00 2001 From: lizzie Date: Wed, 10 Jun 2026 08:09:05 +0000 Subject: [PATCH] dont implode --- src/video_core/host_shaders/ssaa.frag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/host_shaders/ssaa.frag b/src/video_core/host_shaders/ssaa.frag index cbc5d2f9d7..0d76f092bc 100644 --- a/src/video_core/host_shaders/ssaa.frag +++ b/src/video_core/host_shaders/ssaa.frag @@ -15,5 +15,5 @@ layout (location = 0) out vec4 frag_color; layout (binding = BINDING_COLOR_TEXTURE) uniform sampler2D input_texture; void main() { - frag_color = texelFetch(input_texture, ivec2(posPos.xy * textureSize(input_texture)), gl_SampleID); + frag_color = texelFetch(input_texture, ivec2(posPos.xy * textureSize(input_texture, 0)), gl_SampleID); }