mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
3e021f3a6b
This is in preperation of cmake options to enable/disable various functionallity.
10 lines
87 B
GLSL
10 lines
87 B
GLSL
#version 300 es
|
|
|
|
in highp vec4 c;
|
|
out highp vec4 color;
|
|
|
|
void main()
|
|
{
|
|
color = c;
|
|
}
|