mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-02-09 22:25:36 +00:00
9 lines
87 B
GLSL
9 lines
87 B
GLSL
#version 300 es
|
|
|
|
in highp vec4 c;
|
|
out highp vec4 color;
|
|
|
|
void main()
|
|
{
|
|
color = c;
|
|
}
|