diff options
| author | Chris Forbes <chrisforbes@google.com> | 2017-04-24 18:41:23 -0700 |
|---|---|---|
| committer | Chris Forbes <chrisf@ijw.co.nz> | 2017-04-26 07:55:08 +1200 |
| commit | fde28d892d7d07b94e4f376a309fa2acfaaf502a (patch) | |
| tree | 3f78fd59a2325f722465a3e55d6af55a96429f94 /layers/vk_format_utils.cpp | |
| parent | 0325e202efb5154706c0f6848e9ab79f1cb4033c (diff) | |
| download | usermoji-fde28d892d7d07b94e4f376a309fa2acfaaf502a.tar.xz | |
layers: Fix format utils SSCALED/USCALED descriptions
These aren't about colorspaces -- comment was previously mangled from
sRGB case.
Diffstat (limited to 'layers/vk_format_utils.cpp')
| -rw-r--r-- | layers/vk_format_utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; |
