8 lines
87 B
GLSL
8 lines
87 B
GLSL
#version 450
|
|
|
|
out vec4 frag;
|
|
|
|
void main() {
|
|
frag = vec4(1.0, 0.0, 0.0, 1.0);
|
|
}
|