gfxstream: Track more fence functions on host

Add vkGetFenceStatus and vkWaitForFences functions to the
global state tracking list for the host.
This will allow adding more functionality to the fences
and perform additional operations before waiting for and
signaling them.

Reviewed-by: Aaron Ruby <aruby@qnx.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33740>
This commit is contained in:
Serdar Kocdemir 2025-02-10 00:17:10 +00:00 committed by Marge Bot
parent 3449c3c98a
commit 35dd4b4fc2

View file

@ -745,6 +745,8 @@ custom_decodes = {
"vkDestroySemaphore" : emit_global_state_wrapped_decoding,
"vkCreateFence" : emit_global_state_wrapped_decoding,
"vkGetFenceStatus" : emit_global_state_wrapped_decoding,
"vkWaitForFences" : emit_global_state_wrapped_decoding,
"vkResetFences" : emit_global_state_wrapped_decoding,
"vkDestroyFence" : emit_global_state_wrapped_decoding,