aux/vk: Load VK_GOOGLE_display_timing functions

This commit is contained in:
Jakob Bornecrantz 2021-02-24 13:59:23 +00:00
parent e2104a4f31
commit a40c2e7d50
2 changed files with 5 additions and 0 deletions

View file

@ -858,6 +858,9 @@ vk_get_device_functions(struct vk_bundle *vk)
vk->vkImportSemaphoreFdKHR = GET_DEV_PROC(vk, vkImportSemaphoreFdKHR);
vk->vkGetSemaphoreFdKHR = GET_DEV_PROC(vk, vkGetSemaphoreFdKHR);
#endif
vk->vkGetPastPresentationTimingGOOGLE = GET_DEV_PROC(vk, vkGetPastPresentationTimingGOOGLE);
// clang-format on
return VK_SUCCESS;

View file

@ -217,6 +217,8 @@ struct vk_bundle
PFN_vkImportSemaphoreFdKHR vkImportSemaphoreFdKHR;
PFN_vkGetSemaphoreFdKHR vkGetSemaphoreFdKHR;
#endif
PFN_vkGetPastPresentationTimingGOOGLE vkGetPastPresentationTimingGOOGLE;
// clang-format on
};