mirror of
https://github.com/quantum5/punyverse.git
synced 2025-08-02 12:18:18 -04:00
9 lines
102 B
GLSL
9 lines
102 B
GLSL
#version 130
|
|
|
|
out vec4 o_fragColor;
|
|
uniform vec4 u_color;
|
|
|
|
void main() {
|
|
o_fragColor = u_color;
|
|
}
|