Home
last modified time | relevance | path

Searched refs:queue_props (Results 1 – 10 of 10) sorted by relevance

/external/vulkan-validation-layers/tests/
Dvktestbinding.cpp222 QueueCreateInfoArray::QueueCreateInfoArray(const std::vector<VkQueueFamilyProperties> &queue_props) in QueueCreateInfoArray() argument
224 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() local
250 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() local
312 vkGetPhysicalDeviceQueueFamilyProperties(phy_.handle(), &queue_node_count, queue_props); in init_queues()
[all …]
Dvkrenderframework.cpp555 for (size_t i = 0; i < m_device->queue_props.size(); ++i) { in InitSwapchain()
788 queue_props = phy().queue_properties(); in VkDeviceObj()
797 queue_props = phy().queue_properties(); in VkDeviceObj()
802 for (uint32_t i = 0; i < queue_props.size(); i++) { in QueueFamilyMatching()
803 auto flags = queue_props[i].queueFlags; in QueueFamilyMatching()
805 if (matches && ((flags & without) == 0) && (queue_props[i].queueCount > 0)) { in QueueFamilyMatching()
Dvkpositivelayertests.cpp3272 if (!(m_device->queue_props[index].queueFlags & VK_QUEUE_SPARSE_BINDING_BIT)) { in TEST_F()
3368 if (!(m_device->queue_props[index].queueFlags & VK_QUEUE_SPARSE_BINDING_BIT)) { in TEST_F()
3784 if ((m_device->queue_props.empty()) || (m_device->queue_props[0].queueCount < 2)) { in TEST_F()
3852 if ((m_device->queue_props.empty()) || (m_device->queue_props[0].queueCount < 2)) { in TEST_F()
4008 if ((m_device->queue_props.empty()) || (m_device->queue_props[0].queueCount < 2)) { in TEST_F()
4108 if ((m_device->queue_props.empty()) || (m_device->queue_props[0].queueCount < 2)) { in TEST_F()
4214 if ((m_device->queue_props.empty()) || (m_device->queue_props[0].queueCount < 2)) { in TEST_F()
4316 if ((m_device->queue_props.empty()) || (m_device->queue_props[0].queueCount < 2)) { in TEST_F()
4388 if ((m_device->queue_props.empty()) || (m_device->queue_props[0].queueCount < 2)) { in TEST_F()
Dvkrenderframework.h70 std::vector<VkQueueFamilyProperties> queue_props; variable
Dvklayertests_others.cpp160 VkQueueFamilyProperties *queue_props = new VkQueueFamilyProperties[queue_node_count]; in TEST_F() local
161 vkGetPhysicalDeviceQueueFamilyProperties(gpu(), &queue_node_count, queue_props); in TEST_F()
935 if (m_device->queue_props[index].queueFlags & VK_QUEUE_SPARSE_BINDING_BIT) { in TEST_F()
1146 vk_testing::QueueCreateInfoArray queue_info(m_device->queue_props); in TEST_F()
1424 if (m_device->queue_props.size() > 2) { in TEST_F()
1447 vk_testing::QueueCreateInfoArray queue_info(m_device->queue_props); in TEST_F()
2408 vk_testing::QueueCreateInfoArray queue_info(m_device->queue_props); in TEST_F()
2642 vk_testing::QueueCreateInfoArray queue_info(m_device->queue_props); in TEST_F()
Dvklayertests_buffer_image_memory_sampler.cpp3743 const uint32_t invalid = static_cast<uint32_t>(m_device->queue_props.size()); in TEST_F()
3745 …const bool only_one_family = (invalid == 1) || (m_device->queue_props[other_family].queueCount == … in TEST_F()
4014 const std::vector<VkQueueFamilyProperties> queue_props = m_device->queue_props; in TEST_F() local
4066 const uint32_t invalid = static_cast<uint32_t>(m_device->queue_props.size()); in TEST_F()
4068 …const bool only_one_family = (invalid == 1) || (m_device->queue_props[other_family].queueCount == … in TEST_F()
4181 const uint32_t invalid = static_cast<uint32_t>(m_device->queue_props.size()); in TEST_F()
4183 …const bool only_one_family = (invalid == 1) || (m_device->queue_props[other_family].queueCount == … in TEST_F()
4277 const uint32_t invalid = static_cast<uint32_t>(m_device->queue_props.size()); in TEST_F()
4279 …const bool only_one_family = (invalid == 1) || (m_device->queue_props[other_family].queueCount == … in TEST_F()
Dvktestbinding.h186 QueueCreateInfoArray(const std::vector<VkQueueFamilyProperties> &queue_props);
/external/OpenCL-CTS/test_conformance/api/
Dtest_queries.cpp379 cl_queue_properties queue_props[] = { CL_QUEUE_PROPERTIES, 0, 0 }; in check_get_command_queue_info_params() local
412 queue_props[1] = property_options[i]; in check_get_command_queue_info_params()
418 clCreateCommandQueue(context, deviceID, queue_props[1], &error); in check_get_command_queue_info_params()
424 &queue_props[0], &error); in check_get_command_queue_info_params()
445 queue_props[1], "properties"); in check_get_command_queue_info_params()
/external/angle/src/tests/test_utils/third_party/
Dvulkan_command_buffer_utils.h167 std::vector<VkQueueFamilyProperties> queue_props; member
Dvulkan_command_buffer_utils.cpp277 info.queue_props.resize(info.queue_family_count); in init_enumerate_device()
279 info.queue_props.data()); in init_enumerate_device()
628 if ((info.queue_props[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) != 0) in init_swapchain_extension()