mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-08 04:41:51 +09:00
12 lines
122 B
GLSL
12 lines
122 B
GLSL
|
|
#ifdef GL_ES
|
|
precision mediump float;
|
|
#endif
|
|
|
|
in vec4 v_col;
|
|
|
|
out vec4 fragColor;
|
|
|
|
void main() {
|
|
fragColor = v_col;
|
|
} |