/external/vulkan-validation-layers/layers/ |
vk_layer_table.h | 32 typedef std::unordered_map<void *, VkLayerDispatchTable *> device_table_map; 34 VkLayerDispatchTable *initDeviceTable(VkDevice device, const PFN_vkGetDeviceProcAddr gpa, device_table_map &map); 35 VkLayerDispatchTable *initDeviceTable(VkDevice device, const PFN_vkGetDeviceProcAddr gpa); 41 static inline dispatch_key get_dispatch_key(const void *object) { return (dispatch_key) * (VkLayerDispatchTable **)object; } 43 VkLayerDispatchTable *device_dispatch_table(void *object); 47 VkLayerDispatchTable *get_dispatch_table(device_table_map &map, void *object);
|
vk_layer_table.cpp | 38 VkLayerDispatchTable *device_dispatch_table(void *object) { 90 VkLayerDispatchTable *get_dispatch_table(device_table_map &map, void *object) { 173 VkLayerDispatchTable *initDeviceTable(VkDevice device, const PFN_vkGetDeviceProcAddr gpa, device_table_map &map) { 174 VkLayerDispatchTable *pTable; 179 pTable = new VkLayerDispatchTable; 196 VkLayerDispatchTable *initDeviceTable(VkDevice device, const PFN_vkGetDeviceProcAddr gpa) {
|
threading.cpp | 137 my_device_data->device_dispatch_table = new VkLayerDispatchTable; 240 VkLayerDispatchTable *pTable = dev_data->device_dispatch_table; 302 VkLayerDispatchTable *pTable = my_data->device_dispatch_table; 327 VkLayerDispatchTable *pTable = my_data->device_dispatch_table;
|
swapchain.h | 332 VkLayerDispatchTable *device_dispatch_table;
|
threading.h | 202 VkLayerDispatchTable *device_dispatch_table;
|
device_limits.cpp | 59 VkLayerDispatchTable *device_dispatch_table; 453 my_device_data->device_dispatch_table = new VkLayerDispatchTable; [all...] |
image.cpp | 59 VkLayerDispatchTable *device_dispatch_table; 186 my_device_data->device_dispatch_table = new VkLayerDispatchTable; [all...] |
swapchain.cpp | 85 VkLayerDispatchTable *pDisp = my_device_data->device_dispatch_table; [all...] |
unique_objects.h | 178 VkLayerDispatchTable *pDisp = get_dispatch_table(unique_objects_device_table_map, device);
|
object_tracker.h | 123 VkLayerDispatchTable *pDisp = get_dispatch_table(object_tracker_device_table_map, device); [all...] |
core_validation.cpp | 107 VkLayerDispatchTable *device_dispatch_table; [all...] |
/external/vulkan-validation-layers/loader/ |
trampoline.c | 110 const VkLayerDispatchTable *disp_table = *(VkLayerDispatchTable **)device; 744 const VkLayerDispatchTable *disp; [all...] |
loader.h | 180 VkLayerDispatchTable core_dispatch; 380 static inline VkLayerDispatchTable *loader_get_dispatch(const void *obj) { 381 return *((VkLayerDispatchTable **)obj);
|
wsi.c | 401 const VkLayerDispatchTable *disp; 415 const VkLayerDispatchTable *disp; 428 const VkLayerDispatchTable *disp; 443 const VkLayerDispatchTable *disp; 456 const VkLayerDispatchTable *disp; [all...] |
table_ops.h | 53 VkLayerDispatchTable *table = &dev_table->core_dispatch; 266 VkLayerDispatchTable *table = &dev_table->core_dispatch; 280 loader_lookup_device_dispatch_table(const VkLayerDispatchTable *table, [all...] |
/external/vulkan-validation-layers/include/vulkan/ |
vk_layer.h | 172 } VkLayerDispatchTable;
|