voxel_engine/shaders/quad.frag

10 lines
128 B
GLSL
Raw Normal View History

2023-10-19 12:59:58 +02:00
#version 330 core
layout (location = 0) out vec4 fragColor;
in vec3 color;
void main() {
fragColor = vec4(color, 1.0);
}