mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
8 lines
136 B
Text
8 lines
136 B
Text
|
varying vec2 screenspaceCoordinate;
|
||
|
|
||
|
void main(void)
|
||
|
{
|
||
|
screenspaceCoordinate = inVertexPosition.xy;
|
||
|
gl_Position = inVertexPosition;
|
||
|
}
|