Kelsidavis-WoWee/assets/shaders/selection_circle.vert.glsl
Kelsi 83b576e8d9 Vulcan Nightmare
Experimentally bringing up vulcan support
2026-02-21 22:04:17 -08:00

14 lines
239 B
GLSL

#version 450
layout(push_constant) uniform Push {
mat4 mvp;
} push;
layout(location = 0) in vec3 aPos;
layout(location = 0) out vec2 vLocalPos;
void main() {
vLocalPos = aPos.xz;
gl_Position = push.mvp * vec4(aPos, 1.0);
}