Skip to content

Commit 366e423

Browse files
committed
Fix ConvertUBOToPushConstant.cpp:403:26: error: unknown type name 'ConvertUBOToPushConstantPass'; did you mean 'SPIRVToolsUtil::ConvertUBOToPushConstantPass'?
1 parent c47c362 commit 366e423

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Graphics/ShaderTools/src/ConvertUBOToPushConstant.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ std::vector<uint32_t> ConvertUBOToPushConstants(
400400

401401
// Register the pass to convert UBO to push constant using custom out-of-tree pass
402402
optimizer.RegisterPass(spvtools::Optimizer::PassToken(
403-
std::make_unique<ConvertUBOToPushConstantPass>(BlockName)));
403+
std::make_unique<SPIRVToolsUtil::ConvertUBOToPushConstantPass>(BlockName)));
404404

405405
spvtools::OptimizerOptions options;
406406
#ifdef DILIGENT_DEVELOPMENT

0 commit comments

Comments
 (0)