mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-01-30 23:48:44 +03:00
11 lines
117 B
Forth
11 lines
117 B
Forth
|
|
#version 100
|
||
|
|
|
||
|
|
precision highp float;
|
||
|
|
|
||
|
|
uniform vec4 uniform_color;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
gl_FragColor = uniform_color;
|
||
|
|
}
|