Home
last modified time | relevance | path

Searched refs:DestroyDevice (Results 1 – 12 of 12) sorted by relevance

/frameworks/native/vulkan/libvulkan/
Ddriver_gen.h84 PFN_vkDestroyDevice DestroyDevice; member
Dapi.h31 VKAPI_ATTR void DestroyDevice(VkDevice device, const VkAllocationCallbacks* pAllocator);
Dapi.cpp416 static void DestroyDevice(VkDevice dev,
885 if (data.dispatch.DestroyDevice) in Create()
886 data.dispatch.DestroyDevice(dev, allocator); in Create()
1147 void LayerChain::DestroyDevice(VkDevice device, in DestroyDevice() function in vulkan::api::__anon1a3a5f700111::LayerChain
1151 data.dispatch.DestroyDevice(device, allocator); in DestroyDevice()
1208 void DestroyDevice(VkDevice device, const VkAllocationCallbacks* pAllocator) { in DestroyDevice() function
1212 LayerChain::DestroyDevice(device, pAllocator); in DestroyDevice()
Ddriver.cpp1145 data->driver.DestroyDevice = reinterpret_cast<PFN_vkDestroyDevice>( in CreateDevice()
1147 if (data->driver.DestroyDevice) in CreateDevice()
1148 data->driver.DestroyDevice(dev, pAllocator); in CreateDevice()
1165 data->driver.DestroyDevice(dev, pAllocator); in CreateDevice()
1191 void DestroyDevice(VkDevice device, const VkAllocationCallbacks* pAllocator) { in DestroyDevice() function
1193 data.driver.DestroyDevice(device, pAllocator); in DestroyDevice()
Ddriver_gen.cpp248 reinterpret_cast<PFN_vkVoidFunction>(DestroyDevice),
539 INIT_PROC(true, dev, DestroyDevice); in InitDriverTable()
Dapi_gen.h67 PFN_vkDestroyDevice DestroyDevice; member
Ddriver.h126 VKAPI_ATTR void DestroyDevice(VkDevice device, const VkAllocationCallbacks* pAllocator);
Dapi_gen.cpp197 INIT_PROC(true, dev, DestroyDevice); in InitDispatchTable()
616 …(strcmp(pName, "vkDestroyDevice") == 0) return reinterpret_cast<PFN_vkVoidFunction>(DestroyDevice); in GetDeviceProcAddr()
723 { "vkDestroyDevice", reinterpret_cast<PFN_vkVoidFunction>(DestroyDevice) }, in GetInstanceProcAddr()
1564 vulkan::api::DestroyDevice(device, pAllocator); in vkDestroyDevice()
/frameworks/native/vulkan/nulldrv/
Dnull_driver_gen.cpp145 …royDevice", reinterpret_cast<PFN_vkVoidFunction>(static_cast<PFN_vkDestroyDevice>(DestroyDevice))},
Dnull_driver_gen.h43 VKAPI_ATTR void DestroyDevice(VkDevice device, const VkAllocationCallbacks* pAllocator);
Dnull_driver.cpp691 void DestroyDevice(VkDevice device, in DestroyDevice() function
/frameworks/base/libs/hwui/renderthread/
DVulkanManager.cpp322 GET_DEV_PROC(DestroyDevice); in setupDevice()