diff options
| author | Chia-I Wu <olv@lunarg.com> | 2015-10-26 20:14:54 +0800 |
|---|---|---|
| committer | Chia-I Wu <olv@lunarg.com> | 2015-10-30 20:49:24 +0800 |
| commit | ef79bc8e5a81cc33257f1192e341cbea8d83ab7a (patch) | |
| tree | fab671f4695bb7a4c10761bb979fd69c5feb3d2e /vulkan.py | |
| parent | 1c4086aa360cad856d5f5e94779121ddb870cad6 (diff) | |
| download | usermoji-ef79bc8e5a81cc33257f1192e341cbea8d83ab7a.tar.xz | |
bug 14876: Can timestamps be written inside a renderpass? (WIP)
Timestamps are written to a query pool.
https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14876
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -938,8 +938,8 @@ core = Extension( Proto("void", "CmdWriteTimestamp", [Param("VkCmdBuffer", "cmdBuffer"), Param("VkPipelineStageFlagBits", "pipelineStage"), - Param("VkBuffer", "destBuffer"), - Param("VkDeviceSize", "destOffset")]), + Param("VkQueryPool", "queryPool"), + Param("uint32_t", "slot")]), Proto("void", "CmdCopyQueryPoolResults", [Param("VkCmdBuffer", "cmdBuffer"), |
