aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/shaders/chunk.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/shaders/chunk.frag')
-rw-r--r--src/main/resources/shaders/chunk.frag3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/resources/shaders/chunk.frag b/src/main/resources/shaders/chunk.frag
index 6cc1a07..2e729b1 100644
--- a/src/main/resources/shaders/chunk.frag
+++ b/src/main/resources/shaders/chunk.frag
@@ -27,8 +27,7 @@ void main()
goodTexCoord = ProvokingTexCoord.xy + (((TexCoord.xy - ProvokingTexCoord.xy) / MQPos.zw) * vec2(wrappedU, wrappedV));
}
#endif
-
- vec4 texColor = texture(atlas, goodTexCoord);
+ vec4 texColor = texture(atlas, goodTexCoord / 16384.0);
vec4 colorMult = Color/256.0;