aboutsummaryrefslogtreecommitdiff
path: root/layers
diff options
context:
space:
mode:
authorTobin Ehlis <tobine@google.com>2018-02-13 09:35:47 -0700
committerTobin Ehlis <tobine@google.com>2018-02-14 09:07:37 -0700
commit0229cf0c98ae625686e7c36694fca2abb8eeefc8 (patch)
treeeaeed2b839d43da66aee2d2c9d12866869b30507 /layers
parent7ddd1914fbc2529bc9b38a86df3a515f3cbd34cc (diff)
downloadusermoji-0229cf0c98ae625686e7c36694fca2abb8eeefc8.tar.xz
layers:Fix spelling truely->truly
Diffstat (limited to 'layers')
-rw-r--r--layers/buffer_validation.cpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/layers/buffer_validation.cpp b/layers/buffer_validation.cpp
index c68af4ee..c4864a7e 100644
--- a/layers/buffer_validation.cpp
+++ b/layers/buffer_validation.cpp
@@ -2853,23 +2853,21 @@ bool ValidateLayouts(core_validation::layer_data *device_data, VkDevice device,
if (pCreateInfo->pAttachments[i].initialLayout == VK_IMAGE_LAYOUT_UNDEFINED) {
if ((FormatIsColor(format) || FormatHasDepth(format)) &&
pCreateInfo->pAttachments[i].loadOp == VK_ATTACHMENT_LOAD_OP_LOAD) {
- skip |= log_msg(report_data, VK_DEBUG_REPORT_WARNING_BIT_EXT,
- VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, 0,
- __LINE__, DRAWSTATE_INVALID_RENDERPASS, "DS",
+ skip |= log_msg(report_data, VK_DEBUG_REPORT_WARNING_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, 0, __LINE__,
+ DRAWSTATE_INVALID_RENDERPASS, "DS",
"Render pass has an attachment with loadOp == VK_ATTACHMENT_LOAD_OP_LOAD and "
"initialLayout == VK_IMAGE_LAYOUT_UNDEFINED. This is probably not what you "
"intended. Consider using VK_ATTACHMENT_LOAD_OP_DONT_CARE instead if the "
- "image truely is undefined at the start of the render pass.");
+ "image truly is undefined at the start of the render pass.");
}
if (FormatHasStencil(format) &&
pCreateInfo->pAttachments[i].stencilLoadOp == VK_ATTACHMENT_LOAD_OP_LOAD) {
- skip |= log_msg(report_data, VK_DEBUG_REPORT_WARNING_BIT_EXT,
- VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, 0,
- __LINE__, DRAWSTATE_INVALID_RENDERPASS, "DS",
+ skip |= log_msg(report_data, VK_DEBUG_REPORT_WARNING_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, 0, __LINE__,
+ DRAWSTATE_INVALID_RENDERPASS, "DS",
"Render pass has an attachment with stencilLoadOp == VK_ATTACHMENT_LOAD_OP_LOAD "
"and initialLayout == VK_IMAGE_LAYOUT_UNDEFINED. This is probably not what you "
"intended. Consider using VK_ATTACHMENT_LOAD_OP_DONT_CARE instead if the "
- "image truely is undefined at the start of the render pass.");
+ "image truly is undefined at the start of the render pass.");
}
}
}