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