diff options
Diffstat (limited to 'src/shaders/ui.vert')
-rw-r--r-- | src/shaders/ui.vert | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/shaders/ui.vert b/src/shaders/ui.vert deleted file mode 100644 index ad5d46a..0000000 --- a/src/shaders/ui.vert +++ /dev/null @@ -1,10 +0,0 @@ -#version 330 core -layout(location = 0) in vec3 apos; - -uniform mat4 proj; -uniform mat4 model; - -void main(void) -{ - gl_Position = proj*model*vec4(apos, 1.0); -} |