Home | History | Annotate | Download | only in demos

Lines Matching defs:queues

430     // We know we're submitting queues without fences, ignore this
824 // If we are using separate queues, change image ownership to the
839 // If we are using separate queues we have to wait for image ownership,
2947 VkDeviceQueueCreateInfo queues[2];
2948 queues[0].sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
2949 queues[0].pNext = NULL;
2950 queues[0].queueFamilyIndex = demo->graphics_queue_family_index;
2951 queues[0].queueCount = 1;
2952 queues[0].pQueuePriorities = queue_priorities;
2953 queues[0].flags = 0;
2959 .pQueueCreateInfos = queues,
2968 queues[1].sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
2969 queues[1].pNext = NULL;
2970 queues[1].queueFamilyIndex = demo->present_queue_family_index;
2971 queues[1].queueCount = 1;
2972 queues[1].pQueuePriorities = queue_priorities;
2973 queues[1].flags = 0;
3081 ERR_EXIT("Could not find both graphics and present queues\n",