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