mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 23:03:46 +01:00
6d45c243f8
* Add uniform for frame delta time * Adjust exposure in logarithmic (EV) space * Add network support and LUA API * Add testing mod
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;
|
|
}
|