Searched refs:queue_props (Results 1 – 5 of 5) sorted by relevance
222 QueueCreateInfoArray::QueueCreateInfoArray(const std::vector<VkQueueFamilyProperties> &queue_props) in QueueCreateInfoArray() argument224 queue_info_.reserve(queue_props.size()); in QueueCreateInfoArray()226 for (uint32_t i = 0; i < (uint32_t)queue_props.size(); ++i) { in QueueCreateInfoArray()227 if (queue_props[i].queueCount > 0) { in QueueCreateInfoArray()232 qi.queueCount = queue_props[i].queueCount; in QueueCreateInfoArray()248 const std::vector<VkQueueFamilyProperties> queue_props = phy_.queue_properties(); in init() local250 for (uint32_t i = 0; i < (uint32_t)queue_props.size(); i++) { in init()251 if (queue_props[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) { in init()310 VkQueueFamilyProperties *queue_props = new VkQueueFamilyProperties[queue_node_count]; in init_queues() local312 vkGetPhysicalDeviceQueueFamilyProperties(phy_.handle(), &queue_node_count, queue_props); in init_queues()[all …]
636 queue_props = phy().queue_properties(); in VkDeviceObj()645 queue_props = phy().queue_properties(); in VkDeviceObj()650 for (uint32_t i = 0; i < queue_props.size(); i++) { in QueueFamilyMatching()651 auto flags = queue_props[i].queueFlags; in QueueFamilyMatching()653 if (matches && ((flags & without) == 0) && (queue_props[i].queueCount > 0)) { in QueueFamilyMatching()
69 std::vector<VkQueueFamilyProperties> queue_props; variable
186 QueueCreateInfoArray(const std::vector<VkQueueFamilyProperties> &queue_props);
1460 VkQueueFamilyProperties *queue_props = new VkQueueFamilyProperties[queue_node_count]; in TEST_F() local1461 vkGetPhysicalDeviceQueueFamilyProperties(gpu(), &queue_node_count, queue_props); in TEST_F()3053 vk_testing::QueueCreateInfoArray queue_info(m_device->queue_props); in TEST_F()15096 const std::vector<VkQueueFamilyProperties> queue_props = m_device->queue_props; in TEST_F() local15372 const uint32_t invalid = static_cast<uint32_t>(m_device->queue_props.size()); in TEST_F()15374 …const bool only_one_family = (invalid == 1) || (m_device->queue_props[other_family].queueCount == … in TEST_F()15487 const uint32_t invalid = static_cast<uint32_t>(m_device->queue_props.size()); in TEST_F()15489 …const bool only_one_family = (invalid == 1) || (m_device->queue_props[other_family].queueCount == … in TEST_F()15948 if (m_device->queue_props.size() > 2) { in TEST_F()17307 vk_testing::QueueCreateInfoArray queue_info(m_device->queue_props); in TEST_F()[all …]