Skip to content
Snippets Groups Projects
hlsl.discard.frag 173 B
Newer Older
void PixelShaderFunction(float4 input) : COLOR0
{
    foo(input.z);
	if (input.x)
		discard;
	float f = input.x;
	discard;
}