Home | History | Annotate | Download | only in tests

Lines Matching refs:queue_props

278     const std::vector<VkQueueFamilyProperties> queue_props =
281 queue_info.reserve(queue_props.size());
285 for (uint32_t i = 0; i < (uint32_t)queue_props.size(); i++) {
290 qi.queueCount = queue_props[i].queueCount;
295 if (queue_props[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) {
332 VkQueueFamilyProperties *queue_props =
336 queue_props);
341 for (uint32_t j = 0; j < queue_props[i].queueCount; j++) {
346 if (queue_props[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) {
350 if (queue_props[i].queueFlags & VK_QUEUE_COMPUTE_BIT) {
354 if (queue_props[i].queueFlags & VK_QUEUE_TRANSFER_BIT) {
360 delete[] queue_props;