mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 03:24:49 +00:00
vulkan: Lower list primitive restart warning to debug log. (#2725)
This commit is contained in:
parent
a707d31a4c
commit
f85d8df71e
1 changed files with 2 additions and 2 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Reference in a new issue