10 lines
84 B
GLSL
10 lines
84 B
GLSL
#version 450
|
|
|
|
invariant gl_Position;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(1.0);
|
|
}
|
|
|