-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add vkCmdInsertDebugUtilsLabelEXT as a frame delimiter #1301
Add vkCmdInsertDebugUtilsLabelEXT as a frame delimiter #1301
Conversation
CI gfxreconstruct build queued with queue ID 57615. |
CI gfxreconstruct build # 3359 running. |
CI gfxreconstruct build # 3359 passed. |
af667bf
to
2275cdd
Compare
CI gfxreconstruct build queued with queue ID 122882. |
2275cdd
to
2014e8f
Compare
CI gfxreconstruct build queued with queue ID 122915. |
CI gfxreconstruct build # 3704 running. |
CI gfxreconstruct build # 3704 passed. |
Currently only vkCmdDebugMarkerInsertEXT (under conditions on the name of the marker) is considered a frame delimiter (aside from queue present). However, VK_EXT_debug_marker is deprecated and promoted to the VK_EXT_debug_utils extension that support an almost identical command vkCmdInsertDebugUtilsLabelEXT. This commit only add this command as a frame delimiter under the same conditions on the name of the label (which replaces the marker). Change-Id: Ic4164ee65eba2c1295ef8c45084ee6136dc796a8
2014e8f
to
d286439
Compare
CI gfxreconstruct build queued with queue ID 207373. |
Force pushed a rebase on latest dev to resolve issues. |
CI gfxreconstruct build # 4320 running. |
CI gfxreconstruct build # 4320 passed. |
Currently only
vkCmdDebugMarkerInsertEXT
(under conditions on the name of the marker) is considered a frame delimiter (aside from queue present).However,
VK_EXT_debug_marker
is deprecated and promoted to theVK_EXT_debug_utils
extension that support an almost identical commandvkCmdInsertDebugUtilsLabelEXT
.This commit only add this command as a frame delimiter under the same conditions on the name of the label (which replaces the marker).