mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 23:03:46 +01:00
12 lines
183 B
Plaintext
12 lines
183 B
Plaintext
|
#ifdef GL_ES
|
||
|
varying mediump vec2 varTexCoord;
|
||
|
#else
|
||
|
centroid varying vec2 varTexCoord;
|
||
|
#endif
|
||
|
|
||
|
void main(void)
|
||
|
{
|
||
|
varTexCoord.st = inTexCoord0.st;
|
||
|
gl_Position = inVertexPosition;
|
||
|
}
|