We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
(from https://gitlab.khronos.org/vulkan/vulkan/-/issues/4137)
VK_RENDERING_RESUMING_BIT should prevent VUs like 07007 from occurring
VK_RENDERING_RESUMING_BIT
07007
by going
m_command_buffer.Begin(); vk::CmdBeginQuery(m_command_buffer.handle(), query_pool.handle(), 0, 0); begin_rendering_info.flags = VK_RENDERING_RESUMING_BIT; m_command_buffer.BeginRendering(begin_rendering_info); vk::CmdEndQuery(m_command_buffer.handle(), query_pool.handle(), 0); m_command_buffer.EndRendering(); m_command_buffer.End();
we should be able to reach things like VUID-vkCmdEndQuery-queryPool-03228 without triggering 07007
VUID-vkCmdEndQuery-queryPool-03228
There might be many other spots not accounting for VK_RENDERING_RESUMING_BIT as well
The text was updated successfully, but these errors were encountered:
No branches or pull requests
(from https://gitlab.khronos.org/vulkan/vulkan/-/issues/4137)
VK_RENDERING_RESUMING_BIT
should prevent VUs like07007
from occurringby going
we should be able to reach things like
VUID-vkCmdEndQuery-queryPool-03228
without triggering07007
There might be many other spots not accounting for
VK_RENDERING_RESUMING_BIT
as wellThe text was updated successfully, but these errors were encountered: