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.
11 lines
330 B
11 lines
330 B
4 months ago
|
struct VS_OUTPUT {
|
||
|
float4 Position : SV_Position;
|
||
|
float4 clip0 : SV_ClipDistance0; // multiple semantic IDs, two vec4s (no extra packing)
|
||
|
float4 clip1 : SV_ClipDistance1; // ...
|
||
|
};
|
||
|
|
||
|
float4 main(VS_OUTPUT v) : SV_Target0
|
||
|
{
|
||
|
return v.Position + v.clip0 + v.clip1;
|
||
|
}
|