diff options
author | Phil Jones <philj56@gmail.com> | 2021-11-01 18:01:34 +0000 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2021-11-01 18:01:34 +0000 |
commit | 3ddbca74567ecab28b2b1624e6e9b026f9705f3c (patch) | |
tree | e5419f2e40b2bdc9dcc6f5ef378ec92967365015 /shaders/vert.vert | |
parent | 94fa998b7e3524ce101a977ed3516fac13461287 (diff) |
Switch from OpenGL ES 3 to 2.
Diffstat (limited to 'shaders/vert.vert')
-rw-r--r-- | shaders/vert.vert | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shaders/vert.vert b/shaders/vert.vert index 9d62b85..9d3a0eb 100644 --- a/shaders/vert.vert +++ b/shaders/vert.vert @@ -1,4 +1,4 @@ -#version 300 es +#version 100 /* * Copyright (C) 2017-2020 Philip Jones @@ -10,10 +10,10 @@ * */ -in vec2 position; -in vec2 texcoord; +attribute vec2 position; +attribute vec2 texcoord; -out vec2 Texcoord; +varying vec2 Texcoord; void main() { |