mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 10:23:47 +01:00
8 lines
116 B
GLSL
8 lines
116 B
GLSL
varying mediump vec2 varTexCoord;
|
|
|
|
void main(void)
|
|
{
|
|
varTexCoord = inTexCoord0;
|
|
gl_Position = inVertexPosition;
|
|
}
|