diff --git a/app/src/main/cpp/skyline/gpu/interconnect/command_nodes.cpp b/app/src/main/cpp/skyline/gpu/interconnect/command_nodes.cpp index ee914916..93018375 100644 --- a/app/src/main/cpp/skyline/gpu/interconnect/command_nodes.cpp +++ b/app/src/main/cpp/skyline/gpu/interconnect/command_nodes.cpp @@ -234,8 +234,8 @@ namespace skyline::gpu::interconnect::node { .renderPass = renderPass, .attachmentCount = static_cast(attachments.size()), .pAttachments = attachments.data(), - .width = renderArea.extent.width, - .height = renderArea.extent.height, + .width = renderArea.extent.width + static_cast(renderArea.offset.x), + .height = renderArea.extent.height + static_cast(renderArea.offset.y), .layers = 1, }, vk::FramebufferAttachmentsCreateInfo{