This commit is contained in:
2023-03-21 16:05:05 +00:00
parent 9570becd1b
commit 4519a6fbc7
2 changed files with 17 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#version 450 core
layout(location = 0) in vec2 position;
layout(location = 1) in vec2 texpos;
out vec2 vTexPos;
void main() {
gl_Position = vec4(position, 0, 1);
vTexPos = texpos;
}