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