| 39 | } |
| 40 | |
| 41 | VkuInstanceDispatchTable *instance_dispatch_table(void *object) { |
| 42 | dispatch_key key = get_dispatch_key(object); |
| 43 | instance_table_map::const_iterator it = tableInstanceMap.find((void *)key); |
| 44 | assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry"); |
| 45 | return it->second.get(); |
| 46 | } |
| 47 | |
| 48 | void destroy_dispatch_table(device_table_map &map, dispatch_key key) { |
| 49 | device_table_map::const_iterator it = map.find((void *)key); |
nothing calls this directly
no test coverage detected