Home | History | Annotate | Download | only in layers

Lines Matching refs:instance

56     assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry");
77 fprintf(stderr, "destroy instance dispatch_table: map: %p, key: %p, table: %p\n", &map, key, it->second);
79 fprintf(stderr, "destroy instance dispatch table: map: %p, key: %p, table: UNKNOWN\n", &map, key);
117 assert(it != map.end() && "Not able to find instance dispatch entry");
142 * Instance -> PhysicalDevice
146 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa, instance_table_map &map) {
148 dispatch_key key = get_dispatch_key(instance);
155 fprintf(stderr, "New, Instance: map: %p, key: %p, table: %p\n", &map, key, pTable);
159 fprintf(stderr, "Instance: map: %p, key: %p, table: %p\n", &map, key, it->second);
164 layer_init_instance_dispatch_table(instance, pTable, gpa);
169 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa) {
170 return initInstanceTable(instance, gpa, tableInstanceMap);