1#version 450
2
3#extension GL_NV_conservative_raster_underestimation : enable
4
5out vec4 color;
6
7void main() {
8    color = vec4(gl_FragFullyCoveredNV, 0, 0, 0);
9}
10