Skip to content

Commit d499fed

Browse files
committed
conflict resolve
1 parent f6686fa commit d499fed

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

tools/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ if(SLANG_ENABLE_GFX)
139139
stb
140140
$<$<BOOL:${SLANG_ENABLE_XLIB}>:X11::X11>
141141
$<$<BOOL:${SLANG_ENABLE_CUDA}>:CUDA::cuda_driver>
142+
$<$<BOOL:${SLANG_ENABLE_NVAPI}>:${NVAPI_LIBRARIES}>
142143
SPIRV-Tools-link
143144
LINK_WITH_FRAMEWORK Foundation Cocoa QuartzCore Metal
144145
EXTRA_COMPILE_DEFINITIONS_PRIVATE

tools/gfx/renderer-shared.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1136,7 +1136,8 @@ Result ShaderProgramBase::compileShaders(RendererBase* device)
11361136
// glue code holding together the bits of precompiled target IR.
11371137
// Collect those dependency target IRs too.
11381138
ComPtr<slang::IModulePrecompileService_Experimental> componentPrecompileService;
1139-
if (entryPointComponent->queryInterface(
1139+
printf("SKIP check componentPrecompileService\n");
1140+
if (false && entryPointComponent->queryInterface(
11401141
slang::IModulePrecompileService_Experimental::getTypeGuid(),
11411142
(void**)componentPrecompileService.writeRef()) == SLANG_OK)
11421143
{

0 commit comments

Comments
 (0)