11 lines
86 B
Plaintext
11 lines
86 B
Plaintext
#version 140
|
|
|
|
in vec4 col;
|
|
|
|
out vec4 fragCol;
|
|
|
|
void main(void)
|
|
{
|
|
fragCol = col;
|
|
}
|