ded
Dramatic EDitor
Index
Commits
Files
Refs
README
LICENSE
shaders
/simple_color.frag (85B)
Line numbers
raw
1
#version 330 core
2
3
in vec4 out_color;
4
5
void main() {
6
gl_FragColor = out_color;
7
}