diff options
| -rw-r--r-- | shaders/tile-shader.vert | 4 |
1 files changed, 2 insertions, 2 deletions
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() { |
