mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 21:02:50 +00:00
8 lines
104 B
GLSL
8 lines
104 B
GLSL
#version 450
|
|
|
|
layout (location = 0) in vec4 app_position;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = app_position;
|
|
}
|