Lines Matching refs:mFuncs
81 VkResult err = mFuncs.vkCreateSemaphore(mDevice, &semaphoreInfo, nullptr, &semaphore); in createExportableSemaphore()
98 VkResult err = mFuncs.vkCreateSemaphore(mDevice, &semaphoreInfo, nullptr, &semaphore); in importSemaphoreFromSyncFd()
112 err = mFuncs.vkImportSemaphoreFdKHR(mDevice, &importInfo); in importSemaphoreFromSyncFd()
114 mFuncs.vkDestroySemaphore(mDevice, semaphore, nullptr); in importSemaphoreFromSyncFd()
130 VkResult err = mFuncs.vkGetSemaphoreFdKHR(mDevice, &getFdInfo, &res); in exportSemaphoreSyncFd()
139 mFuncs.vkDestroySemaphore(mDevice, semaphore, nullptr); in destroySemaphore()
290 mFuncs.vkDestroyInstance = vkDestroyInstance; in init()
530 mFuncs.vkDeviceWaitIdle = vkDeviceWaitIdle; in init()
531 mFuncs.vkDestroyDevice = vkDestroyDevice; in init()
537 mFuncs.vkCreateSemaphore = vkCreateSemaphore; in init()
538 mFuncs.vkImportSemaphoreFdKHR = vkImportSemaphoreFdKHR; in init()
539 mFuncs.vkGetSemaphoreFdKHR = vkGetSemaphoreFdKHR; in init()
540 mFuncs.vkDestroySemaphore = vkDestroySemaphore; in init()
573 mFuncs.vkDeviceWaitIdle(mDevice); in teardown()
574 mFuncs.vkDestroyDevice(mDevice, nullptr); in teardown()
578 mFuncs.vkDestroyInstance(mInstance, nullptr); in teardown()
614 mFuncs = VulkanFuncs(); in teardown()