8 lines
69 B
Plaintext
8 lines
69 B
Plaintext
|
|
#version 330 core
|
||
|
|
|
||
|
|
in vec4 col;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
gl_FragColor = col;
|
||
|
|
}
|