8 lines
95 B
GLSL
8 lines
95 B
GLSL
|
#version 330
|
||
|
out vec4 fragColor;
|
||
|
|
||
|
in vec4 color;
|
||
|
|
||
|
void main(void){
|
||
|
fragColor = color;
|
||
|
}
|