|
|
@ -228,6 +228,7 @@ struct DeviceDispatch : InstanceDispatch { |
|
|
PFN_vkCmdPushConstants vkCmdPushConstants{}; |
|
|
PFN_vkCmdPushConstants vkCmdPushConstants{}; |
|
|
PFN_vkCmdPushDescriptorSetWithTemplateKHR vkCmdPushDescriptorSetWithTemplateKHR{}; |
|
|
PFN_vkCmdPushDescriptorSetWithTemplateKHR vkCmdPushDescriptorSetWithTemplateKHR{}; |
|
|
PFN_vkCmdResolveImage vkCmdResolveImage{}; |
|
|
PFN_vkCmdResolveImage vkCmdResolveImage{}; |
|
|
|
|
|
PFN_vkCmdResetQueryPool vkCmdResetQueryPool{}; |
|
|
PFN_vkCmdSetBlendConstants vkCmdSetBlendConstants{}; |
|
|
PFN_vkCmdSetBlendConstants vkCmdSetBlendConstants{}; |
|
|
PFN_vkCmdSetCullModeEXT vkCmdSetCullModeEXT{}; |
|
|
PFN_vkCmdSetCullModeEXT vkCmdSetCullModeEXT{}; |
|
|
PFN_vkCmdSetDepthBias vkCmdSetDepthBias{}; |
|
|
PFN_vkCmdSetDepthBias vkCmdSetDepthBias{}; |
|
|
@ -1164,6 +1165,10 @@ public: |
|
|
dld->vkCmdBeginQuery(handle, query_pool, query, flags); |
|
|
dld->vkCmdBeginQuery(handle, query_pool, query, flags); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void ResetQueryPool(VkQueryPool query_pool, u32 first, u32 count) const noexcept { |
|
|
|
|
|
dld->vkCmdResetQueryPool(handle, query_pool, first, count); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
void EndQuery(VkQueryPool query_pool, u32 query) const noexcept { |
|
|
void EndQuery(VkQueryPool query_pool, u32 query) const noexcept { |
|
|
dld->vkCmdEndQuery(handle, query_pool, query); |
|
|
dld->vkCmdEndQuery(handle, query_pool, query); |
|
|
} |
|
|
} |
|
|
|