summaryrefslogtreecommitdiffstats
path: root/examples/triangle/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/triangle/main.cpp')
-rw-r--r--examples/triangle/main.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/triangle/main.cpp b/examples/triangle/main.cpp
index bd6542b38..90589c157 100644
--- a/examples/triangle/main.cpp
+++ b/examples/triangle/main.cpp
@@ -42,6 +42,8 @@
using namespace gfx;
using namespace Slang;
+static const ExampleResources resourceBase("triangle");
+
// For the purposes of a small example, we will define the vertex data for a
// single triangle directly in the source file. It should be easy to extend
// this example to load data from an external source, if desired.
@@ -112,7 +114,8 @@ gfx::Result loadShaderProgram(
// already been loaded previously, that would be used directly.
//
ComPtr<slang::IBlob> diagnosticsBlob;
- slang::IModule* module = slangSession->loadModule("shaders", diagnosticsBlob.writeRef());
+ Slang::String path = resourceBase.resolveResource("shaders.slang");
+ slang::IModule* module = slangSession->loadModule(path.getBuffer(), diagnosticsBlob.writeRef());
diagnoseIfNeeded(diagnosticsBlob);
if(!module)
return SLANG_FAIL;