Change log level from WARNING to INFO for tiler compilation (#3749)

This commit is contained in:
Randomuser8219
2025-10-25 17:43:52 -07:00
committed by GitHub
parent 6bd74ef769
commit 6c08c6983b

View File

@@ -138,9 +138,9 @@ vk::Pipeline TileManager::GetTilingPipeline(const ImageInfo& info, bool is_tiler
vk::ShaderStageFlagBits::eCompute, device, defines);
const auto module_name = fmt::format("{}_{} {}", magic_enum::enum_name(info.tile_mode),
info.num_bits, is_tiler ? "tiler" : "detiler");
LOG_WARNING(Render_Vulkan, "Compiling shader {}", module_name);
LOG_INFO(Render_Vulkan, "Compiling shader {}", module_name);
for (const auto& def : defines) {
LOG_WARNING(Render_Vulkan, "#define {}", def);
LOG_INFO(Render_Vulkan, "#define {}", def);
}
Vulkan::SetObjectName(device, module, module_name);
const vk::PipelineShaderStageCreateInfo shader_ci = {