From 439b38f705b548617b7e9c7865d9398ee1ca7bdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sun, 6 Nov 2022 00:11:04 +0100 Subject: [PATCH] Comment fixes (feedback) --- Common/GPU/Vulkan/VulkanQueueRunner.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Common/GPU/Vulkan/VulkanQueueRunner.h b/Common/GPU/Vulkan/VulkanQueueRunner.h index a3b120e60b..6b7242cadf 100644 --- a/Common/GPU/Vulkan/VulkanQueueRunner.h +++ b/Common/GPU/Vulkan/VulkanQueueRunner.h @@ -54,7 +54,7 @@ enum class PipelineFlags : u8 { ENUM_CLASS_BITOPS(PipelineFlags); // Pipelines need to be created for the right type of render pass. -// TODO: Rename to RenderPassType? It is currently a bitfield. +// TODO: Rename to RenderPassFlags? // When you add more flags, don't forget to update rpTypeDebugNames[]. enum class RenderPassType { DEFAULT = 0, @@ -74,8 +74,6 @@ enum class RenderPassType { }; ENUM_CLASS_BITOPS(RenderPassType); -// Hm, soon time to exploit the bit properties in these.. - inline bool RenderPassTypeHasDepth(RenderPassType type) { return (type & RenderPassType::HAS_DEPTH) || type == RenderPassType::BACKBUFFER; }