diff options
| author | Yong He <yonghe@outlook.com> | 2019-02-05 18:18:16 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-05 18:18:16 -0800 |
| commit | a39fd3d3f67df28b9206c9f08bc7d046f9b0db59 (patch) | |
| tree | a3971c4c6217914e9dc4c12917f26a7eb6ac28b2 /tests/compute/global-type-param-array.slang | |
| parent | c198eaba351850fcb3d82c2f5117efc0e2e2bf1e (diff) | |
| parent | 60cc9f24c4bec54561bea873ee943aa3d0973dc2 (diff) | |
Merge branch 'master' into gencloser
Diffstat (limited to 'tests/compute/global-type-param-array.slang')
| -rw-r--r-- | tests/compute/global-type-param-array.slang | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/compute/global-type-param-array.slang b/tests/compute/global-type-param-array.slang index 87236d8f6..d801efe2c 100644 --- a/tests/compute/global-type-param-array.slang +++ b/tests/compute/global-type-param-array.slang @@ -6,17 +6,16 @@ RWStructuredBuffer<float> outputBuffer; import globalTypeParamArrayShared; -__generic_param TImpl : IBase; - -ParameterBlock<TImpl> impl; - float doCompute<T:IBase>(T t) { return t.compute(1.0); } [numthreads(1, 1, 1)] -void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID) +void computeMain< + TImpl : IBase>( + uniform ParameterBlock<TImpl> impl, + uint3 dispatchThreadID : SV_DispatchThreadID) { uint tid = dispatchThreadID.x; float outVal = doCompute<TImpl>(impl); |
