Commit d3b31037 by Shahbaz Youssefi Committed by Commit Bot

Vulkan: DispatchIndirect in graph dump output

Bug: angleproject:3601 Change-Id: Ib7e5abea3a9fced88f415c6395a3f790aadafdaa Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1776008Reviewed-by: 's avatarShahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
parent 324b3915
...@@ -400,6 +400,9 @@ std::string SecondaryCommandBuffer::dumpCommands(const char *separator) const ...@@ -400,6 +400,9 @@ std::string SecondaryCommandBuffer::dumpCommands(const char *separator) const
case CommandID::Dispatch: case CommandID::Dispatch:
result += "Dispatch"; result += "Dispatch";
break; break;
case CommandID::DispatchIndirect:
result += "DispatchIndirect";
break;
case CommandID::Draw: case CommandID::Draw:
result += "Draw"; result += "Draw";
break; break;
......
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