From 9fcd0bad36a11b8b6a23d4a798d006639276f360 Mon Sep 17 00:00:00 2001 From: The Judge Date: Sun, 29 Sep 2024 17:50:27 -0700 Subject: [PATCH] Revert "Unflip" This reverts commit 8758a8ba886b0af3d604734b6729f1923e23dd72. --- .../resources/assets/minecraft/shaders/core/fovreduction.vsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/resources/assets/minecraft/shaders/core/fovreduction.vsh b/common/src/main/resources/assets/minecraft/shaders/core/fovreduction.vsh index 8f7c6496c..96210edff 100644 --- a/common/src/main/resources/assets/minecraft/shaders/core/fovreduction.vsh +++ b/common/src/main/resources/assets/minecraft/shaders/core/fovreduction.vsh @@ -7,5 +7,5 @@ uniform mat4 ProjMat; out vec2 texCoordinates; void main() { gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0); - texCoordinates = vec2(UV0.s, UV0.t); + texCoordinates = vec2(UV0.s, 1.0 - UV0.t); }