mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-10 15:19:24 +07:00
10 lines
108 B
GLSL
Executable File
10 lines
108 B
GLSL
Executable File
#ifdef GL_ES
|
|
precision mediump float;
|
|
#endif
|
|
|
|
varying vec4 v_col;
|
|
|
|
void main(){
|
|
gl_FragColor = v_col;
|
|
}
|