summaryrefslogtreecommitdiffstats
path: root/tests/compute/dynamic-dispatch-13.slang
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2024-11-22 15:14:48 -0800
committerGitHub <noreply@github.com>2024-11-22 15:14:48 -0800
commit43728fbda5b9af19eded18fe82ca67b66cc6d0f7 (patch)
tree13354573300776f7f293b886109c85be760933fc /tests/compute/dynamic-dispatch-13.slang
parent756cb32e92f42a622d10b1cca52c7b7e926725d2 (diff)
Don't treat StrcturedBuffer<IFoo> as a specializable param. (#5645)
* Don't treat StrcturedBuffer<IFoo> as a specializable param. * Fix RHI.
Diffstat (limited to 'tests/compute/dynamic-dispatch-13.slang')
-rw-r--r--tests/compute/dynamic-dispatch-13.slang1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/compute/dynamic-dispatch-13.slang b/tests/compute/dynamic-dispatch-13.slang
index 20d78e0ad..eff5218a0 100644
--- a/tests/compute/dynamic-dispatch-13.slang
+++ b/tests/compute/dynamic-dispatch-13.slang
@@ -17,7 +17,6 @@ interface IInterface
RWStructuredBuffer<int> gOutputBuffer;
//TEST_INPUT: set gCb = new StructuredBuffer<IInterface>{new MyImpl{1}};
RWStructuredBuffer<IInterface> gCb;
-// Add two elements into the structured buffer to prevent specialization.
//TEST_INPUT: set gCb1 = new StructuredBuffer<IInterface>{new MyImpl{1}, new MyImpl2{2}};
RWStructuredBuffer<IInterface> gCb1;