From 0e71a6d40d2ccdc9e6bb861e7bbdb9479dbec636 Mon Sep 17 00:00:00 2001 From: venkataram-nv Date: Mon, 1 Jul 2024 10:08:04 -0700 Subject: Resource searching for examples (#4518) --- examples/hello-world/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'examples/hello-world/main.cpp') diff --git a/examples/hello-world/main.cpp b/examples/hello-world/main.cpp index d1db6008a..cdae6e92b 100644 --- a/examples/hello-world/main.cpp +++ b/examples/hello-world/main.cpp @@ -15,6 +15,8 @@ using Slang::ComPtr; +static const ExampleResources resourceBase("hello-world"); + struct HelloWorldExample { // The Vulkan functions pointers result from loading the vulkan library. @@ -137,7 +139,8 @@ int HelloWorldExample::createComputePipelineFromShader() slang::IModule* slangModule = nullptr; { ComPtr diagnosticBlob; - slangModule = session->loadModule("hello-world", diagnosticBlob.writeRef()); + Slang::String path = resourceBase.resolveResource("hello-world.slang"); + slangModule = session->loadModule(path.getBuffer(), diagnosticBlob.writeRef()); diagnoseIfNeeded(diagnosticBlob); if (!slangModule) return -1; -- cgit v1.2.3