| 63 | void destroy_instance_dispatch_table(dispatch_key key) { destroy_dispatch_table(tableInstanceMap, key); } |
| 64 | |
| 65 | VkuDeviceDispatchTable *get_dispatch_table(device_table_map &map, void *object) { |
| 66 | dispatch_key key = get_dispatch_key(object); |
| 67 | device_table_map::const_iterator it = map.find((void *)key); |
| 68 | assert(it != map.end() && "Not able to find device dispatch entry"); |
| 69 | return it->second; |
| 70 | } |
| 71 | |
| 72 | VkuInstanceDispatchTable *get_dispatch_table(instance_table_map &map, void *object) { |
| 73 | dispatch_key key = get_dispatch_key(object); |
nothing calls this directly
no test coverage detected