6 lines
90 B
GLSL
6 lines
90 B
GLSL
#version 330 core
|
|
out vec4 colour;
|
|
in vec2 UV;
|
|
void main() {
|
|
colour = vec4(1,0,1,1);
|
|
} |