12 lines
103 B
GLSL
12 lines
103 B
GLSL
#version 150
|
|
|
|
in vec4 col;
|
|
out vec4 c;
|
|
|
|
void main()
|
|
{
|
|
// compute the final pixel color
|
|
c = col;
|
|
}
|
|
|