7 lines
92 B
GLSL
7 lines
92 B
GLSL
#version 450 core
|
|
layout (location = 0) in vec4 poss;
|
|
void main()
|
|
{
|
|
gl_Position = poss;
|
|
}
|