summaryrefslogtreecommitdiff
path: root/tests/compute/global-type-param2.slang
diff options
context:
space:
mode:
authorTim Foley <tfoleyNV@users.noreply.github.com>2019-02-05 16:47:37 -0800
committerGitHub <noreply@github.com>2019-02-05 16:47:37 -0800
commit13d7e34d8be4316c59bd3d00a1e5526215db6fa4 (patch)
tree1a774f323300e72ca2ae66db2d883491f0790d39 /tests/compute/global-type-param2.slang
parent43950e2b2f2b1109fe25e67fc678272af6dfb7ef (diff)
parent60cc9f24c4bec54561bea873ee943aa3d0973dc2 (diff)
Merge branch 'master' into fix-nested-type-conformances
Diffstat (limited to 'tests/compute/global-type-param2.slang')
-rw-r--r--tests/compute/global-type-param2.slang9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/compute/global-type-param2.slang b/tests/compute/global-type-param2.slang
index f29d01407..976a31df8 100644
--- a/tests/compute/global-type-param2.slang
+++ b/tests/compute/global-type-param2.slang
@@ -38,10 +38,6 @@ struct Impl : IBase
}
};
-__generic_param TImpl : IBase;
-
-ParameterBlock<TImpl> impl;
-
// at binding c0:
cbuffer existingBuffer
{
@@ -51,7 +47,10 @@ Texture2D tex1; // = 0.0
SamplerState sampler;
[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 b0 = tex1.SampleLevel(sampler, float2(0.0), 0.0).x + base0; // = 0.5