summaryrefslogtreecommitdiffstats
path: root/src/video_core/vulkan_common/vulkan_wrapper.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-12-02 23:12:54 +0100
committerLiam <byteslice@airmail.cc>2022-12-04 16:55:13 +0100
commit7fc6514be12c79f8fe1a87ee8b5f0ae9b04b2462 (patch)
tree666b273617ffcbd4f1fc11c11cf663c1fed25044 /src/video_core/vulkan_common/vulkan_wrapper.h
parentvulkan_common: promote descriptor update template usage to core (diff)
downloadyuzu-7fc6514be12c79f8fe1a87ee8b5f0ae9b04b2462.tar
yuzu-7fc6514be12c79f8fe1a87ee8b5f0ae9b04b2462.tar.gz
yuzu-7fc6514be12c79f8fe1a87ee8b5f0ae9b04b2462.tar.bz2
yuzu-7fc6514be12c79f8fe1a87ee8b5f0ae9b04b2462.tar.lz
yuzu-7fc6514be12c79f8fe1a87ee8b5f0ae9b04b2462.tar.xz
yuzu-7fc6514be12c79f8fe1a87ee8b5f0ae9b04b2462.tar.zst
yuzu-7fc6514be12c79f8fe1a87ee8b5f0ae9b04b2462.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/vulkan_common/vulkan_wrapper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/vulkan_common/vulkan_wrapper.h b/src/video_core/vulkan_common/vulkan_wrapper.h
index 101205386..9997420dd 100644
--- a/src/video_core/vulkan_common/vulkan_wrapper.h
+++ b/src/video_core/vulkan_common/vulkan_wrapper.h
@@ -301,7 +301,7 @@ struct DeviceDispatch : InstanceDispatch {
PFN_vkMapMemory vkMapMemory{};
PFN_vkQueueSubmit vkQueueSubmit{};
PFN_vkResetFences vkResetFences{};
- PFN_vkResetQueryPoolEXT vkResetQueryPoolEXT{};
+ PFN_vkResetQueryPool vkResetQueryPool{};
PFN_vkSetDebugUtilsObjectNameEXT vkSetDebugUtilsObjectNameEXT{};
PFN_vkSetDebugUtilsObjectTagEXT vkSetDebugUtilsObjectTagEXT{};
PFN_vkUnmapMemory vkUnmapMemory{};
@@ -884,8 +884,8 @@ public:
return dld->vkDeviceWaitIdle(handle);
}
- void ResetQueryPoolEXT(VkQueryPool query_pool, u32 first, u32 count) const noexcept {
- dld->vkResetQueryPoolEXT(handle, query_pool, first, count);
+ void ResetQueryPool(VkQueryPool query_pool, u32 first, u32 count) const noexcept {
+ dld->vkResetQueryPool(handle, query_pool, first, count);
}
VkResult GetQueryResults(VkQueryPool query_pool, u32 first, u32 count, std::size_t data_size,