mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
5ac53362a3
The help text is rendered in the bottom left corner on a semi-transparent background, very similar to how the FPS text is rendered.
12 lines
137 B
GLSL
12 lines
137 B
GLSL
#version 300 es
|
|
|
|
in highp vec2 uv;
|
|
out highp vec4 color;
|
|
|
|
uniform sampler2D sampler1;
|
|
|
|
void main()
|
|
{
|
|
color = texture(sampler1, uv);
|
|
}
|