mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 20:59:04 +00:00
7 lines
190 B
GLSL
7 lines
190 B
GLSL
|
#version 450
|
||
|
#extension GL_NV_sample_mask_override_coverage : enable
|
||
|
in vec4 color;
|
||
|
layout(override_coverage) out int gl_SampleMask[];
|
||
|
void main() {
|
||
|
gl_SampleMask[0] = int(0xFFFFFFFF);
|
||
|
}
|