mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 08:03:45 +01:00
d6da80fe24
closes #14985
8 lines
126 B
GLSL
8 lines
126 B
GLSL
varying lowp vec4 varColor;
|
|
|
|
void main(void)
|
|
{
|
|
gl_Position = mWorldViewProj * inVertexPosition;
|
|
varColor = inVertexColor;
|
|
}
|