10 lines
139 B
GLSL
Executable file
10 lines
139 B
GLSL
Executable file
in vec4 position;
|
|
in vec2 texcoord;
|
|
|
|
out vec2 texCoordVarying;
|
|
|
|
void main()
|
|
{
|
|
texCoordVarying = texcoord;
|
|
gl_Position = position;
|
|
}
|