0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-01 15:01:00 +00:00
quakeforge/libs/video/renderer/vulkan/shader/passthrough.vert

8 lines
104 B
GLSL

#version 450
layout (location = 0) in vec4 app_position;
void main()
{
gl_Position = app_position;
}