mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-28 07:22:21 -08:00
9 lines
108 B
GLSL
Executable file
9 lines
108 B
GLSL
Executable file
#ifdef GL_ES
|
|
precision mediump float;
|
|
#endif
|
|
|
|
varying vec4 v_col;
|
|
|
|
void main(){
|
|
gl_FragColor = v_col;
|
|
}
|