summaryrefslogtreecommitdiffstats
path: root/tests/compute/interface-assoc-type-param.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/interface-assoc-type-param.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/interface-assoc-type-param.slang')
-rw-r--r--tests/compute/interface-assoc-type-param.slang3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/compute/interface-assoc-type-param.slang b/tests/compute/interface-assoc-type-param.slang
index a234d457f..6f7443e1f 100644
--- a/tests/compute/interface-assoc-type-param.slang
+++ b/tests/compute/interface-assoc-type-param.slang
@@ -16,7 +16,8 @@ interface IEval
uint eval();
}
-export struct Impl : IInterface
+//TEST_INPUT: type_conformance Impl:IInterface = 0
+struct Impl : IInterface
{
uint val;
struct TEval : IEval