From 401d8cdb12ae69aeb216c80c9bb90240d8359649 Mon Sep 17 00:00:00 2001 From: Yong He Date: Fri, 23 Feb 2024 16:39:46 -0800 Subject: Add slangc interface to compile and use ir modules. (#3615) * Add slangc interface to compile and use ir modules. * Fix glsl scalar layout settings not copied to target. * Fix. * Cleanups. --- tests/serialization/serialized-module-test.slang | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'tests/serialization/serialized-module-test.slang') diff --git a/tests/serialization/serialized-module-test.slang b/tests/serialization/serialized-module-test.slang index d27fe0458..3e7588a2a 100644 --- a/tests/serialization/serialized-module-test.slang +++ b/tests/serialization/serialized-module-test.slang @@ -9,14 +9,9 @@ //import serialized_module; // This is fragile - needs match the definition in serialized_module -struct Thing -{ - int a; - int b; -}; +import serialized_module_shared; -// TODO: need to get the name mangling to line up! -int foo(Thing thing); +extern int foo(Thing thing); //TEST_INPUT:ubuffer(data=[0 0 0 0 ], stride=4):out,name outputBuffer RWStructuredBuffer outputBuffer; -- cgit v1.2.3