diff options
Diffstat (limited to '')
-rwxr-xr-x | res/shaders/simple_shader.frag | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/res/shaders/simple_shader.frag b/res/shaders/simple_shader.frag index e7d6bdb..622c3bb 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[6]; +layout (binding = 1) uniform sampler2D texSampler[9]; void main() { outColor = texture(texSampler[fragTex], fragUv) + fragLight; |