From f1e851e1b8896ed9e8a736578af18eeab6828054 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 2 Mar 2026 20:37:11 +0100 Subject: [PATCH] Fix WebGPU by moving user to Australia --- .../Engine/ShadersCompilation/WebGPU/ShaderCompilerWebGPU.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Engine/ShadersCompilation/WebGPU/ShaderCompilerWebGPU.cpp b/Source/Engine/ShadersCompilation/WebGPU/ShaderCompilerWebGPU.cpp index 57f7961cd..3828be55a 100644 --- a/Source/Engine/ShadersCompilation/WebGPU/ShaderCompilerWebGPU.cpp +++ b/Source/Engine/ShadersCompilation/WebGPU/ShaderCompilerWebGPU.cpp @@ -28,6 +28,9 @@ void ShaderCompilerWebGPU::InitParsing(ShaderCompilationContext* context, glslan { ShaderCompilerVulkan::InitParsing(context, shader); + // Don't flip Y like Vulkan does + shader.setInvertY(false); + // Use newer SPIR-V shader.setEnvClient(glslang::EShClientVulkan, glslang::EShTargetVulkan_1_2); shader.setEnvTarget(glslang::EShTargetSpv, glslang::EShTargetSpv_1_3);