mirror of
https://github.com/quantum5/punyverse.git
synced 2025-04-24 21:21:59 -04:00
9 lines
107 B
GLSL
9 lines
107 B
GLSL
#version 330 core
|
|
|
|
out vec4 o_fragColor;
|
|
uniform vec4 u_color;
|
|
|
|
void main() {
|
|
o_fragColor = u_color;
|
|
}
|