summary refs log tree commit diff
path: root/misc/vita/colored_alpha_f.cg
blob: 8bae2c173a9ff6913e0c182b7a077677ef83947e (plain)
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;
}