From fde28d892d7d07b94e4f376a309fa2acfaaf502a Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Mon, 24 Apr 2017 18:41:23 -0700 Subject: layers: Fix format utils SSCALED/USCALED descriptions These aren't about colorspaces -- comment was previously mangled from sRGB case. --- layers/vk_format_utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'layers/vk_format_utils.cpp') diff --git a/layers/vk_format_utils.cpp b/layers/vk_format_utils.cpp index ee6233fb..3d6e5cb5 100644 --- a/layers/vk_format_utils.cpp +++ b/layers/vk_format_utils.cpp @@ -678,7 +678,7 @@ VK_LAYER_EXPORT bool FormatIsSRGB(VkFormat format) { return is_srgb; } -// Return true if format is in the USCALED colorspace +// Return true if format is a USCALED format VK_LAYER_EXPORT bool FormatIsUScaled(VkFormat format) { bool is_uscaled = false; @@ -705,7 +705,7 @@ VK_LAYER_EXPORT bool FormatIsUScaled(VkFormat format) { return is_uscaled; } -// Return true if format is in the SSCALED colorspace +// Return true if format is a SSCALED format VK_LAYER_EXPORT bool FormatIsSScaled(VkFormat format) { bool is_sscaled = false; -- cgit v1.2.3