From c203a541567d691b514170b2f41b21b00acb6325 Mon Sep 17 00:00:00 2001 From: Sergey Kosarevsky Date: Sat, 19 Oct 2024 13:59:22 -0700 Subject: [PATCH] Fixed a bunch of typos --- lvk/vulkan/VulkanClasses.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lvk/vulkan/VulkanClasses.cpp b/lvk/vulkan/VulkanClasses.cpp index 41415af825e..6336ca8297c 100644 --- a/lvk/vulkan/VulkanClasses.cpp +++ b/lvk/vulkan/VulkanClasses.cpp @@ -2108,10 +2108,10 @@ void lvk::CommandBuffer::cmdBeginRendering(const lvk::RenderPass& renderPass, co } const VkExtent3D dim = colorTexture.vkExtent_; if (fbWidth) { - LVK_ASSERT_MSG(dim.width == fbWidth, "All attachments should have the save width"); + LVK_ASSERT_MSG(dim.width == fbWidth, "All attachments should have the same width"); } if (fbHeight) { - LVK_ASSERT_MSG(dim.height == fbHeight, "All attachments should have the save width"); + LVK_ASSERT_MSG(dim.height == fbHeight, "All attachments should have the same height"); } mipLevel = descColor.level; fbWidth = dim.width; @@ -2171,10 +2171,10 @@ void lvk::CommandBuffer::cmdBeginRendering(const lvk::RenderPass& renderPass, co } const VkExtent3D dim = depthTexture.vkExtent_; if (fbWidth) { - LVK_ASSERT_MSG(dim.width == fbWidth, "All attachments should have the save width"); + LVK_ASSERT_MSG(dim.width == fbWidth, "All attachments should have the same width"); } if (fbHeight) { - LVK_ASSERT_MSG(dim.height == fbHeight, "All attachments should have the save width"); + LVK_ASSERT_MSG(dim.height == fbHeight, "All attachments should have the same height"); } mipLevel = descDepth.level; fbWidth = dim.width;