9 lines
77 B
Plaintext
9 lines
77 B
Plaintext
#version 330 core
|
|
|
|
out vec4 color;
|
|
|
|
void main(){
|
|
color = vec3(0.5,0,0);
|
|
}
|
|
|