14 lines
196 B
Plaintext
14 lines
196 B
Plaintext
float4 vs_main(float3 pos : POSITION) : SV_POSITION
|
|
{
|
|
if (0 > 100)
|
|
{
|
|
return float4(pos, 1.0f);
|
|
}
|
|
else
|
|
{
|
|
return float4(1.0f);
|
|
}
|
|
return float4(0.0f);
|
|
}
|
|
|