From 919e96949c090bba0162e0004a75efab2c2a5a5f Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 3 Oct 2022 14:50:04 +0200 Subject: a --- shaders/tile-shader.vert | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shaders') diff --git a/shaders/tile-shader.vert b/shaders/tile-shader.vert index e9717f86..dfab845e 100644 --- a/shaders/tile-shader.vert +++ b/shaders/tile-shader.vert @@ -3,8 +3,8 @@ precision highp float; layout (location = 0) uniform vec2 scale; layout (location = 1) uniform vec2 offset; -in vec4 position; -in vec2 texcoords; +layout (location = 0) in vec4 position; +layout (location = 1) in vec2 texcoords; noperspective out vec2 frag_texcoords; void main() { -- cgit v1.2.3