diff options
| author | Yong He <yonghe@outlook.com> | 2021-06-10 00:30:19 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-10 00:30:19 -0700 |
| commit | 0d9bd79e8fd4d57e1a723ca6b6a45efec2b42872 (patch) | |
| tree | d9e23abd1b51044b12b556cd063916f0b44362c0 /tools/gfx/vulkan/vk-api.h | |
| parent | 86b0d74e58259c1a1c964acf18923303d9e93148 (diff) | |
Support timestamp queries in `gfx`. (#1880)
* Support timestamp queries in `gfx`.
* Fix tab
Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'tools/gfx/vulkan/vk-api.h')
| -rw-r--r-- | tools/gfx/vulkan/vk-api.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/gfx/vulkan/vk-api.h b/tools/gfx/vulkan/vk-api.h index c6537ff8f..75b88dd96 100644 --- a/tools/gfx/vulkan/vk-api.h +++ b/tools/gfx/vulkan/vk-api.h @@ -91,6 +91,10 @@ namespace gfx { x(vkCmdCopyBufferToImage)\ x(vkCmdPushConstants) \ x(vkCmdSetStencilReference) \ + x(vkCmdWriteTimestamp) \ + x(vkCmdBeginQuery) \ + x(vkCmdEndQuery) \ + x(vkCmdResetQueryPool) \ \ x(vkCreateFence) \ x(vkDestroyFence) \ @@ -116,6 +120,10 @@ namespace gfx { \ x(vkBindImageMemory) \ x(vkBindBufferMemory) \ + \ + x(vkCreateQueryPool) \ + x(vkGetQueryPoolResults) \ + x(vkDestroyQueryPool) \ /* */ #if SLANG_WINDOWS_FAMILY |
