Skip to content

Commit

Permalink
Ignore a couple of benign perf warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Dec 30, 2023
1 parent 6de05f1 commit de4c04e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Common/GPU/Vulkan/VulkanDebug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,15 @@ VKAPI_ATTR VkBool32 VKAPI_CALL VulkanDebugUtilsCallback(
// False positive
// https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues/3615
return false;

case 1835555994: // [AMD] [NVIDIA] Performance warning : Pipeline VkPipeline 0xa808d50000000033[global_texcolor] was bound twice in the frame.
// Benign perf warnings.
return false;

case 1810669668:
// Clear value but no LOAD_OP_CLEAR. Not worth fixing right now.
return false;

default:
break;
}
Expand Down

0 comments on commit de4c04e

Please sign in to comment.