From 001cbb9141ecd8e1f3f6f63b4c5765cb87eff4a2 Mon Sep 17 00:00:00 2001 From: tylermurphy534 Date: Wed, 28 Sep 2022 22:55:07 -0400 Subject: cooler chunk generation --- res/shaders/simple_shader.frag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'res/shaders') diff --git a/res/shaders/simple_shader.frag b/res/shaders/simple_shader.frag index 1ea39c7..e7d6bdb 100755 --- a/res/shaders/simple_shader.frag +++ b/res/shaders/simple_shader.frag @@ -6,7 +6,7 @@ layout (location = 2) in flat int fragTex; layout (location = 0) out vec4 outColor; -layout (binding = 1) uniform sampler2D texSampler[3]; +layout (binding = 1) uniform sampler2D texSampler[6]; void main() { outColor = texture(texSampler[fragTex], fragUv) + fragLight; -- cgit v1.2.3-freya