mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-23 07:40:14 +00:00
7 lines
106 B
GLSL
7 lines
106 B
GLSL
#version 450
|
|
|
|
layout(location = 0) in vec2 aPos;
|
|
|
|
void main() {
|
|
gl_Position = vec4(aPos, 0.0, 1.0);
|
|
}
|