Tweak wording of message about writing indirect args during renderpass

This commit is contained in:
baldurk
2022-08-19 11:00:09 +01:00
parent 84c824e573
commit c7bfba2c1c
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -216,6 +216,7 @@ DebugMessageView::DebugMessageView(ICaptureContext &ctx, QWidget *parent)
ui->messages->setMouseTracking(true);
ui->messages->setAutoScroll(false);
ui->messages->verticalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents);
ui->messages->horizontalHeader()->setStretchLastSection(false);
ui->messages->setContextMenuPolicy(Qt::CustomContextMenu);
@@ -1087,7 +1087,7 @@ bool WrappedVulkan::Serialise_vkCreateRenderPass(SerialiserType &ser, VkDevice d
StringFormat::Fmt("Creating renderpass %s contains a subpass dependency "
"that would allow writing indirect command arguments.\n"
"Indirect command contents are read at the end of the "
"render pass, so write-after-read overwrites will "
"render pass, so writes during the pass will "
"cause incorrect display of indirect arguments.",
ToStr(RenderPass).c_str()));