vulkan: Lower list primitive restart warning to debug log. (#2725)

This commit is contained in:
squidbus 2025-03-30 12:02:33 -07:00 committed by GitHub
parent a707d31a4c
commit f85d8df71e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,8 +77,8 @@ GraphicsPipeline::GraphicsPipeline(
auto prim_restart = key.enable_primitive_restart != 0;
if (prim_restart && IsPrimitiveListTopology() && !instance.IsListRestartSupported()) {
LOG_WARNING(Render_Vulkan,
"Primitive restart is enabled for list topology but not supported by driver.");
LOG_DEBUG(Render_Vulkan,
"Primitive restart is enabled for list topology but not supported by driver.");
prim_restart = false;
}
const vk::PipelineInputAssemblyStateCreateInfo input_assembly = {