Commit 5b7ce876 by Jamie Madill Committed by Commit Bot

Vulkan: Update buffer accumulation TODO bug IDs.

Bug: angleproject:4029 Bug: angleproject:4429 Change-Id: Ice4ae48a92e376ea916f05d1433a68f3accc09d5 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2071145Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarCourtney Goeltzenleuchter <courtneygo@google.com> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent b185002d
......@@ -1689,7 +1689,7 @@ bool BufferHelper::canAccumulateRead(ContextVk *contextVk, VkAccessFlags readAcc
{
// We only need to start a new command buffer when we need a new barrier.
// For simplicity's sake for now we always start a new command buffer.
// TODO(jmadill): Re-use the command buffer. http://anglebug.com/4029
// TODO(jmadill): Re-use the command buffer. http://anglebug.com/4429
return false;
}
......@@ -1697,7 +1697,7 @@ bool BufferHelper::canAccumulateWrite(ContextVk *contextVk, VkAccessFlags writeA
{
// We only need to start a new command buffer when we need a new barrier.
// For simplicity's sake for now we always start a new command buffer.
// TODO(jmadill): Re-use the command buffer. http://anglebug.com/4029
// TODO(jmadill): Re-use the command buffer. http://anglebug.com/4429
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment