summaryrefslogtreecommitdiffstats
path: root/examples/hello-world/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello-world/main.cpp')
-rw-r--r--examples/hello-world/main.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/examples/hello-world/main.cpp b/examples/hello-world/main.cpp
index e9585bde9..c6774b64f 100644
--- a/examples/hello-world/main.cpp
+++ b/examples/hello-world/main.cpp
@@ -117,11 +117,19 @@ int HelloWorldExample::createComputePipelineFromShader()
slang::TargetDesc targetDesc = {};
targetDesc.format = SLANG_SPIRV;
targetDesc.profile = slangGlobalSession->findProfile("spirv_1_5");
- targetDesc.flags = SLANG_TARGET_FLAG_GENERATE_SPIRV_DIRECTLY;
+ targetDesc.flags = 0;
+
sessionDesc.targets = &targetDesc;
sessionDesc.targetCount = 1;
+ std::vector<slang::CompilerOptionEntry> options;
+ options.push_back(
+ {slang::CompilerOptionName::EmitSpirvDirectly,
+ {slang::CompilerOptionValueKind::Int, 1, 0, nullptr, nullptr}});
+ sessionDesc.compilerOptionEntries = options.data();
+ sessionDesc.compilerOptionEntryCount = options.size();
+
ComPtr<slang::ISession> session;
RETURN_ON_FAIL(slangGlobalSession->createSession(sessionDesc, session.writeRef()));