1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00
luanti/client/shaders/clouds_merge/opengl_vertex.glsl

8 lines
136 B
Text
Raw Normal View History

2024-07-05 12:15:22 +02:00
varying vec2 screenspaceCoordinate;
void main(void)
{
screenspaceCoordinate = inVertexPosition.xy;
gl_Position = inVertexPosition;
}