Commit 4baebea8 by John Kessenich

HLSL Test: Expand test, adding a user-patch-constant signature.

parent e516d433
...@@ -18,11 +18,11 @@ struct gs_in_t ...@@ -18,11 +18,11 @@ struct gs_in_t
}; };
[domain ( "tri" )] [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 main (const OutputPatch <ds_in_t, 3> i, float f : msem, float3 tesscoord : SV_DomainLocation, pcf_in_t pcf_data )
{ {
gs_in_t o; gs_in_t o;
o.pos = i[0].pos + tesscoord.x; o.pos = i[0].pos + tesscoord.x * f;
o.norm = i[0].norm + tesscoord.y; o.norm = i[0].norm + tesscoord.y;
tesscoord.z; tesscoord.z;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment