From ff1c71fa333f1c0fbbcf234413e2a929cfd3f8ef Mon Sep 17 00:00:00 2001 From: Rua Date: Tue, 2 Jan 2024 14:09:24 +0100 Subject: [PATCH] Add missing tickmarks (#2440) --- vulkano/src/command_buffer/commands/render_pass.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vulkano/src/command_buffer/commands/render_pass.rs b/vulkano/src/command_buffer/commands/render_pass.rs index c7076bef..a04d444f 100644 --- a/vulkano/src/command_buffer/commands/render_pass.rs +++ b/vulkano/src/command_buffer/commands/render_pass.rs @@ -1028,7 +1028,7 @@ impl RawRecordingCommandBuffer { "`framebuffer.attachments()[{0}]` is used in `render_pass` \ with the `ImageLayout::ShaderReadOnlyOptimal` layout, but \ `framebuffer.attachments()[{0}].usage()` does not contain \ - `ImageUsage::SAMPLED` or `ImageUsage::INPUT_ATTACHMENT", + `ImageUsage::SAMPLED` or `ImageUsage::INPUT_ATTACHMENT`", attachment_index, ) .into(), @@ -1044,7 +1044,7 @@ impl RawRecordingCommandBuffer { "`framebuffer.attachments()[{0}]` is used in `render_pass` \ with the `ImageLayout::TransferSrcOptimal` layout, but \ `framebuffer.attachments()[{0}].usage()` does not contain \ - `ImageUsage::TRANSFER_SRC", + `ImageUsage::TRANSFER_SRC`", attachment_index, ) .into(), @@ -1060,7 +1060,7 @@ impl RawRecordingCommandBuffer { "`framebuffer.attachments()[{0}]` is used in `render_pass` \ with the `ImageLayout::TransferDstOptimal` layout, but \ `framebuffer.attachments()[{0}].usage()` does not contain \ - `ImageUsage::TRANSFER_DST", + `ImageUsage::TRANSFER_DST`", attachment_index, ) .into(), @@ -1164,7 +1164,7 @@ impl RawRecordingCommandBuffer { "`framebuffer.attachments()[{0}]` is used in `render_pass` \ with the `ImageLayout::ShaderReadOnlyOptimal` layout, but \ `framebuffer.attachments()[{0}].usage()` does not contain \ - `ImageUsage::SAMPLED` or `ImageUsage::INPUT_ATTACHMENT", + `ImageUsage::SAMPLED` or `ImageUsage::INPUT_ATTACHMENT`", atch_ref.attachment, ) .into(), @@ -1180,7 +1180,7 @@ impl RawRecordingCommandBuffer { "`framebuffer.attachments()[{0}]` is used in `render_pass` \ with the `ImageLayout::TransferSrcOptimal` layout, but \ `framebuffer.attachments()[{0}].usage()` does not contain \ - `ImageUsage::TRANSFER_SRC", + `ImageUsage::TRANSFER_SRC`", atch_ref.attachment, ) .into(), @@ -1196,7 +1196,7 @@ impl RawRecordingCommandBuffer { "`framebuffer.attachments()[{0}]` is used in `render_pass` \ with the `ImageLayout::TransferDstOptimal` layout, but \ `framebuffer.attachments()[{0}].usage()` does not contain \ - `ImageUsage::TRANSFER_DST", + `ImageUsage::TRANSFER_DST`", atch_ref.attachment, ) .into(),