1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-09-15 18:57:08 +00:00

Volumetric effects

This commit is contained in:
Gefüllte Taubenbrust 2024-07-05 12:15:22 +02:00
parent cd6e304cfa
commit 22ba7449f2
15 changed files with 468 additions and 23 deletions

View file

@ -0,0 +1,7 @@
varying vec2 screenspaceCoordinate;
void main(void)
{
screenspaceCoordinate = inVertexPosition.xy;
gl_Position = inVertexPosition;
}