mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-07-07 03:59:52 +00:00

The help text is rendered in the bottom left corner on a semi-transparent background, very similar to how the FPS text is rendered.
9 lines
92 B
GLSL
9 lines
92 B
GLSL
#version 300 es
|
|
|
|
out highp vec4 color;
|
|
|
|
void main()
|
|
{
|
|
color = vec4(0.0, 0.0, 1.0, 1.0);
|
|
}
|