9 lines
140 B
Plaintext
9 lines
140 B
Plaintext
|
#version 330 core
|
||
|
|
||
|
layout (location = 0) in vec2 inputVertex;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = vec4(inputVertex.x, inputVertex.y, 0.0, 1.0);
|
||
|
}
|