6 lines
68 B
GLSL
6 lines
68 B
GLSL
|
|
#version 450
|
||
|
|
out float fragColor;
|
||
|
|
void main() {
|
||
|
|
fragColor = 1.0;
|
||
|
|
}
|