From 70b312398fd8a2eec78b7864088429e806435e91 Mon Sep 17 00:00:00 2001 From: DH Date: Thu, 14 Nov 2024 00:18:04 +0300 Subject: [PATCH] update shader-tool to use new api --- tools/shader-tool/shader-tool.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/shader-tool/shader-tool.cpp b/tools/shader-tool/shader-tool.cpp index 60ae726..21fb573 100644 --- a/tools/shader-tool/shader-tool.cpp +++ b/tools/shader-tool/shader-tool.cpp @@ -301,7 +301,8 @@ static shader::ir::Region parseIsa(shader::ir::Context &context, } if (auto converted = shader::gcn::convertToSpv( - isaContext, ir, gcnSemanticModuleInfo, *inputParam.gcnStage, env)) { + isaContext, ir, gcnSemanticInfo, gcnSemanticModuleInfo, + *inputParam.gcnStage, env)) { if (auto result = shader::spv::deserialize(context, converted->spv, loc)) { return result->merge(context); }