protot/data/shaders/fs_simple.glsl

8 lines
97 B
GLSL

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