protot/data/shaders/fs_simple.glsl

10 lines
123 B
Plaintext
Raw Normal View History

2018-02-13 12:05:07 +01:00
#version 330 core
layout(location = 0) out vec3 outColor;
2018-02-13 12:05:07 +01:00
2018-02-16 21:22:34 +01:00
uniform vec4 uColor;
2018-02-13 12:05:07 +01:00
void main() {
2018-02-16 21:22:34 +01:00
outColor = uColor.rgb;
2018-02-13 12:05:07 +01:00
}