Skip to content

Commit

Permalink
Fixed a bunch of typos
Browse files Browse the repository at this point in the history
  • Loading branch information
corporateshark committed Oct 19, 2024
1 parent 88c34b4 commit c203a54
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lvk/vulkan/VulkanClasses.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit c203a54

Please sign in to comment.