mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-03 16:41:30 +00:00
33 lines
555 B
Plaintext
33 lines
555 B
Plaintext
|
|
||
|
struct ds_in_t
|
||
|
{
|
||
|
float4 pos : POSITION;
|
||
|
float3 norm : TEXCOORD0;
|
||
|
};
|
||
|
|
||
|
struct pcf_in_t
|
||
|
{
|
||
|
float flTessFactor [3] : SV_TessFactor;
|
||
|
float flInsideTessFactor : SV_InsideTessFactor;
|
||
|
};
|
||
|
|
||
|
struct gs_in_t
|
||
|
{
|
||
|
float4 pos : POSITION;
|
||
|
float3 norm : TEXCOORD0;
|
||
|
};
|
||
|
|
||
|
[domain ( "tri" )]
|
||
|
gs_in_t main (const OutputPatch <ds_in_t, 3> i, float3 tesscoord : SV_DomainLocation, pcf_in_t pcf_data )
|
||
|
{
|
||
|
gs_in_t o;
|
||
|
|
||
|
o.pos = i[0].pos + tesscoord.x;
|
||
|
o.norm = i[0].norm + tesscoord.y;
|
||
|
|
||
|
tesscoord.z;
|
||
|
|
||
|
return o;
|
||
|
}
|
||
|
|