diff options
author | pryazha <pryadeiniv@mail.ru> | 2025-06-06 10:30:01 +0500 |
---|---|---|
committer | pryazha <pryadeiniv@mail.ru> | 2025-06-06 10:30:01 +0500 |
commit | 90fb30cf3a92690178e5ad39095f604c2bc50afa (patch) | |
tree | 6d1a1deb1578a55bedfc19db831abcef27c9ed62 /data/shaders/ui.vert | |
parent | 143db0546b188bfbc5f4a2affa0d84cb42e2ce4a (diff) |
trying to add windows support, also a lot of changes, some ui modifications
Diffstat (limited to 'data/shaders/ui.vert')
-rw-r--r-- | data/shaders/ui.vert | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/data/shaders/ui.vert b/data/shaders/ui.vert new file mode 100644 index 0000000..6f252e5 --- /dev/null +++ b/data/shaders/ui.vert @@ -0,0 +1,10 @@ +#version 330 core +layout(location = 0) in vec3 aposition; + +uniform mat4 projection; +uniform mat4 world; + +void main(void) +{ + gl_Position = projection*world*vec4(aposition, 1.0); +} |