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