diff options
Diffstat (limited to 'examples/hello-world/main.cpp')
| -rw-r--r-- | examples/hello-world/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
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<slang::IBlob> 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; |
