1 2 3 4 5 6 7 8 9
float4 main ( float4 out_color: COLOR ) : COLOR { if (out_color.a < 0.5) discard; return out_color; }