mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-10-09 00:48:06 +00:00
11 lines
130 B
GLSL
11 lines
130 B
GLSL
#version 300 es
|
|
precision highp float;
|
|
precision highp int;
|
|
|
|
out vec4 color;
|
|
|
|
void main()
|
|
{
|
|
color = vec4(1.0, 1.0, 0.0, 0.5);
|
|
}
|