dust3d/application/shaders/monochrome_core.frag

8 lines
142 B
GLSL
Raw Normal View History

2022-09-23 15:54:49 +00:00
#version 330
in vec3 pointColor;
in float pointAlpha;
out vec4 fragColor;
void main()
{
fragColor = vec4(pointColor, pointAlpha);
}