mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 14:53:45 +01:00
9df79a4b2d
Adds configurable light exposure control and bloom effect (light bleeding) with client-side settings.
12 lines
183 B
GLSL
12 lines
183 B
GLSL
#ifdef GL_ES
|
|
varying mediump vec2 varTexCoord;
|
|
#else
|
|
centroid varying vec2 varTexCoord;
|
|
#endif
|
|
|
|
void main(void)
|
|
{
|
|
varTexCoord.st = inTexCoord0.st;
|
|
gl_Position = inVertexPosition;
|
|
}
|