We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a479cd8 commit c9c64f3Copy full SHA for c9c64f3
1 file changed
common/src/main/resources/assets/minecraft/shaders/core/fovreduction.vsh
@@ -7,5 +7,5 @@ uniform mat4 ProjMat;
7
out vec2 texCoordinates;
8
void main() {
9
gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0);
10
- texCoordinates = vec2(UV0.s, UV0.t);
+ texCoordinates = vec2(UV0.s, 1.0 - UV0.t);
11
}
0 commit comments