You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
179 B
7 lines
179 B
4 months ago
|
float4 main(in float4 pos : SV_Position,
|
||
|
in float clip : SV_ClipDistance,
|
||
|
in float cull : SV_CullDistance) : SV_Target0
|
||
|
{
|
||
|
return pos + clip + cull;
|
||
|
}
|