mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
13 lines
184 B
Text
13 lines
184 B
Text
|
#ifdef GL_ES
|
||
|
varying mediump vec2 varTexCoord;
|
||
|
#else
|
||
|
centroid varying vec2 varTexCoord;
|
||
|
#endif
|
||
|
|
||
|
|
||
|
void main(void)
|
||
|
{
|
||
|
varTexCoord.st = inTexCoord0.st;
|
||
|
gl_Position = inVertexPosition;
|
||
|
}
|