Home | History | Annotate | Download | only in layers

Lines Matching refs:instance

49     assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry");
70 fprintf(stderr, "destroy instance dispatch_table: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
72 fprintf(stderr, "destroy instance dispatch table: map: 0x%p, key: 0x%p, table: UNKNOWN\n", &map, key);
109 assert(it != map.end() && "Not able to find instance dispatch entry");
134 * Instance -> PhysicalDevice
138 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa, instance_table_map &map) {
140 dispatch_key key = get_dispatch_key(instance);
147 fprintf(stderr, "New, Instance: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, pTable);
151 fprintf(stderr, "Instance: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
156 layer_init_instance_dispatch_table(instance, pTable, gpa);
161 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa) {
162 return initInstanceTable(instance, gpa, tableInstanceMap);