Home | History | Annotate | Download | only in layers

Lines Matching refs:device

41     assert(it != tableMap.end() && "Not able to find device dispatch entry");
64 fprintf(stderr, "destroy device dispatch_table: map: %p, key: %p, table: %p\n", &map, key, it->second);
66 fprintf(stderr, "destroy device dispatch table: map: %p, key: %p, table: UNKNOWN\n", &map, key);
101 assert(it != map.end() && "Not able to find device dispatch entry");
143 * Device -> CommandBuffer or Queue
173 VkLayerDispatchTable *initDeviceTable(VkDevice device, const PFN_vkGetDeviceProcAddr gpa, device_table_map &map) {
175 dispatch_key key = get_dispatch_key(device);
182 fprintf(stderr, "New, Device: map: %p, key: %p, table: %p\n", &map, key, pTable);
186 fprintf(stderr, "Device: map: %p, key: %p, table: %p\n", &map, key, it->second);
191 layer_init_device_dispatch_table(device, pTable, gpa);
196 VkLayerDispatchTable *initDeviceTable(VkDevice device, const PFN_vkGetDeviceProcAddr gpa) {
197 return initDeviceTable(device, gpa, tableMap);