9 lines
81 B
GLSL
9 lines
81 B
GLSL
|
|
/* Does Nothing */
|
|
in vec3 pos;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(pos, 1.0);
|
|
}
|