Saxum/data/shader/flame.fsh

11 lines
98 B
GLSL

#version 150
in vec3 fColor;
out vec4 oColor;
void main() {
oColor = vec4(fColor, 0.5);
}