Home | History | Annotate | Download | only in demos

Lines Matching defs:queues

370         vk::DeviceQueueCreateInfo queues[2];
371 queues[0].setQueueFamilyIndex(graphics_queue_family_index);
372 queues[0].setQueueCount(1);
373 queues[0].setPQueuePriorities(priorities);
377 .setPQueueCreateInfos(queues)
386 queues[1].setQueueFamilyIndex(present_queue_family_index);
387 queues[1].setQueueCount(1);
388 queues[1].setPQueuePriorities(priorities);
450 // If we are using separate queues, change image ownership to the
470 // If we are using separate queues we have to wait for image ownership,
1113 ERR_EXIT("Could not find both graphics and present queues\n",