layers: Fix format utils SSCALED/USCALED descriptions
authorChris Forbes <chrisforbes@google.com>
Tue, 25 Apr 2017 01:41:23 +0000 (18:41 -0700)
committerChris Forbes <chrisf@ijw.co.nz>
Tue, 25 Apr 2017 19:55:08 +0000 (07:55 +1200)
These aren't about colorspaces -- comment was previously mangled from
sRGB case.

layers/vk_format_utils.cpp

index ee6233fb7b8c76a93ce0aa8b02e4b413d2759f49..3d6e5cb50380e59ccfbd228621d0dcd4e69f396f 100644 (file)
@@ -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;