Files
Cinecraft/shaders/basic.frag
2026-04-13 00:51:32 +02:00

7 lines
114 B
GLSL

#version 330 core
layout(location = 0) out vec4 color;
void main() {
color = vec4(1.0f, 1.0f, 0.0f, 1.0f);
}