Home | History | Annotate | Download | only in layers

Lines Matching refs:instance

39     assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry");
73 assert(it != map.end() && "Not able to find instance dispatch entry");
98 * Instance -> PhysicalDevice
102 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa, instance_table_map &map) {
104 dispatch_key key = get_dispatch_key(instance);
114 layer_init_instance_dispatch_table(instance, pTable, gpa);
116 // Setup func pointers that are required but not externally exposed. These won't be added to the instance dispatch table by
118 pTable->GetPhysicalDeviceProcAddr = (PFN_GetPhysicalDeviceProcAddr)gpa(instance, "vk_layerGetPhysicalDeviceProcAddr");
123 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa) {
124 return initInstanceTable(instance, gpa, tableInstanceMap);