Searched refs:disp_table (Results 1 - 3 of 3) sorted by relevance

/external/vulkan-validation-layers/layers/
H A Dunique_objects.cpp152 VkLayerInstanceDispatchTable *disp_table = &instance_data->dispatch_table; local
153 disp_table->DestroyInstance(instance, pAllocator);
274 VkLayerInstanceDispatchTable *disp_table = &instance_data->dispatch_table; local
275 if (disp_table->GetPhysicalDeviceProcAddr == NULL) {
278 return disp_table->GetPhysicalDeviceProcAddr(instance, funcName);
/external/vulkan-validation-layers/loader/
H A Dtrampoline.c84 const VkLayerDispatchTable *disp_table = *(VkLayerDispatchTable **)device; local
85 if (disp_table == NULL) return NULL;
87 addr = loader_lookup_device_dispatch_table(disp_table, pName);
90 if (disp_table->GetDeviceProcAddr == NULL) return NULL;
91 return disp_table->GetDeviceProcAddr(device, pName);
H A Dloader.c3796 VkLayerInstanceDispatchTable *disp_table = *(VkLayerInstanceDispatchTable **)inst; local
3799 if (disp_table == NULL) return NULL;
3802 addr = loader_lookup_instance_dispatch_table(disp_table, pName, &found_name);
3819 VkLayerInstanceDispatchTable *disp_table = *(VkLayerInstanceDispatchTable **)inst; local
3822 if (disp_table == NULL) return NULL;
3825 addr = loader_lookup_instance_dispatch_table(disp_table, pName, &found_name);
3859 VkLayerInstanceDispatchTable *disp_table = *(VkLayerInstanceDispatchTable **)inst; local
3862 if (disp_table == NULL) return NULL;
3865 addr = loader_lookup_instance_dispatch_table(disp_table, pName, &found_name);

Completed in 102 milliseconds