tracy icon indicating copy to clipboard operation
tracy copied to clipboard

vkGetPhysicalDeviceCalibrateableTimeDomainsEXT is instance-dispatchable function

Open qbojj opened this issue 2 years ago • 0 comments

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.

qbojj avatar Jan 16 '24 23:01 qbojj