summaryrefslogtreecommitdiff
path: root/tests/current-bugs/resource-dynamic-dispatch.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/current-bugs/resource-dynamic-dispatch.slang')
-rw-r--r--tests/current-bugs/resource-dynamic-dispatch.slang6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/current-bugs/resource-dynamic-dispatch.slang b/tests/current-bugs/resource-dynamic-dispatch.slang
index 0a987b1cf..f344448dd 100644
--- a/tests/current-bugs/resource-dynamic-dispatch.slang
+++ b/tests/current-bugs/resource-dynamic-dispatch.slang
@@ -26,13 +26,13 @@ interface IInterface
};
// Need public to make these conformances available
-public struct A : IInterface
+export struct A : IInterface
{
typedef SomeData Type;
IGetTexture getType() { Type t = { gTexA }; return t; }
};
-public struct B : IInterface
+export struct B : IInterface
{
typedef SomeData Type;
IGetTexture getType() { Type t = { gTexB }; return t; }
@@ -64,4 +64,4 @@ void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
let tex = getTex.getTexture();
outputBuffer[tid] = tex.Load(int3(tid, tid, 0));
-} \ No newline at end of file
+}