mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-23 07:40:14 +00:00
11 lines
172 B
GLSL
11 lines
172 B
GLSL
#version 450
|
|
|
|
layout(push_constant) uniform Push {
|
|
mat4 mvp;
|
|
} push;
|
|
|
|
layout(location = 0) in vec3 aPos;
|
|
|
|
void main() {
|
|
gl_Position = push.mvp * vec4(aPos, 1.0);
|
|
}
|