From 0229cf0c98ae625686e7c36694fca2abb8eeefc8 Mon Sep 17 00:00:00 2001 From: Tobin Ehlis Date: Tue, 13 Feb 2018 09:35:47 -0700 Subject: layers:Fix spelling truely->truly --- layers/buffer_validation.cpp | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'layers/buffer_validation.cpp') 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."); } } } -- cgit v1.2.3