Files
Cheap-Vulkan-Renderer/shaders/simple_shader.vert
2026-02-20 13:38:05 +00:00

8 lines
112 B
GLSL

#version 450
layout(location = 0) in vec2 position;
void main() {
gl_Position = vec4(position, 0.0, 1.0);
}