wolfpld / tracy

Frame profiler
https://tracy.nereid.pl/
Other
8.67k stars 598 forks source link

vkGetPhysicalDeviceCalibrateableTimeDomainsEXT is instance-dispatchable function #714

Open qbojj opened 5 months ago

qbojj commented 5 months ago

TracyVk queries for vkGetPhysicalDeviceCalibrateableTimeDomainsEXT using vkGetDeviceProcAddr, but it is physical-device-level function. As such the vkGetDeviceProcAddr will return NULL.

To fix this issue You should just query for vkGetPhysicalDeviceCalibrateableTimeDomainsEXT using vkGetInstanceProcAddr

Note that it may still be usefull to query vkGetCalibratedTimestampsEXT from device as it is a device-level function.