8 lines
84 B
GLSL
8 lines
84 B
GLSL
#version 330 core
|
|
in vec3 frag_col;
|
|
out vec3 col;
|
|
|
|
void main() {
|
|
col = frag_col;
|
|
}
|