mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
10 lines
192 B
GLSL
10 lines
192 B
GLSL
varying lowp vec4 varColor;
|
|
varying mediump vec2 varTexCoord;
|
|
|
|
void main(void)
|
|
{
|
|
varTexCoord = inTexCoord0.st;
|
|
gl_Position = mWorldViewProj * inVertexPosition;
|
|
|
|
varColor = inVertexColor;
|
|
}
|