aboutsummaryrefslogtreecommitdiff
path: root/layers/descriptor_sets.cpp
diff options
context:
space:
mode:
authorMike Weiblen <mikew@lunarg.com>2016-10-17 19:33:05 -0600
committerMike Weiblen <mikew@lunarg.com>2016-10-19 11:21:12 -0600
commit93869c9a8624bbaf8ea67929ebd52a5a401dcdb5 (patch)
treed84801a04fa5dfa5607eb91c181e507aa610a638 /layers/descriptor_sets.cpp
parent3ef14f907d9333582d27baa32c9721bc9998d926 (diff)
downloadusermoji-93869c9a8624bbaf8ea67929ebd52a5a401dcdb5.tar.xz
layers: Reword from cryptic abbreviations to readable words
Expand abbreviations to improve readability: DS=depth/stencil DS=descriptor set CB=command buffer VS=vertex shader FS=fragment shader VTX=vertex PSO=pipeline state object Change-Id: I48fe917aac50d1911fe2a3aa1ed2c739637c7645
Diffstat (limited to 'layers/descriptor_sets.cpp')
-rw-r--r--layers/descriptor_sets.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/descriptor_sets.cpp b/layers/descriptor_sets.cpp
index 1e22f82c..11489955 100644
--- a/layers/descriptor_sets.cpp
+++ b/layers/descriptor_sets.cpp
@@ -780,7 +780,7 @@ bool cvdescriptorset::ValidateImageUpdate(VkImageView image_view, VkImageLayout
}
break;
default:
- // For other layouts if the source is ds image, both aspect bits must not be set
+ // For other layouts if the source is depth/stencil image, both aspect bits must not be set
if (ds) {
if (aspect_mask & VK_IMAGE_ASPECT_DEPTH_BIT) {
if (aspect_mask & VK_IMAGE_ASPECT_STENCIL_BIT) {