prosperon/source/shaders/btdebugfrag.glsl
John Alanbrook e745acad3e Project cleanup
Standard shaders and fonts now belong to the source directory
2022-08-05 21:16:04 +00:00

9 lines
127 B
GLSL

#version 330 core
layout (location = 0) out vec4 color;
in vec3 vcolor;
void main(void)
{
color = vec4(vcolor, 1.f);
}