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.
14 lines
233 B
14 lines
233 B
4 months ago
|
struct S {
|
||
|
float clip0 : SV_ClipDistance0;
|
||
|
float clip1 : SV_ClipDistance1;
|
||
|
float cull0 : SV_CullDistance0;
|
||
|
float cull1 : SV_CullDistance1;
|
||
|
int ii : SV_InstanceID;
|
||
|
};
|
||
|
|
||
|
S main(S ins)
|
||
|
{
|
||
|
S s;
|
||
|
return s;
|
||
|
}
|