
float4 main( float4 vTex0 : TEXCOORD0 ) : COLOR0
{
	if(vTex0.w == 1.0)
		discard;

    return float4(1, 1, 1, 1);
}


