8 lines
90 B
GLSL
8 lines
90 B
GLSL
#version 330 core
|
|
|
|
out vec4 FragColor;
|
|
|
|
void main() {
|
|
FragColor = vec4(1, 1, 1, 1);
|
|
}
|