Home
last modified time | relevance | path

Searched refs:queue_node_count (Results 1 – 2 of 2) sorted by relevance

/external/vulkan-validation-layers/tests/
Dvktestbinding.cpp304 uint32_t queue_node_count; in init_queues() local
307 vkGetPhysicalDeviceQueueFamilyProperties(phy_.handle(), &queue_node_count, NULL); in init_queues()
308 EXPECT(queue_node_count >= 1); in init_queues()
310 VkQueueFamilyProperties *queue_props = new VkQueueFamilyProperties[queue_node_count]; in init_queues()
312 vkGetPhysicalDeviceQueueFamilyProperties(phy_.handle(), &queue_node_count, queue_props); in init_queues()
314 queue_families_.resize(queue_node_count); in init_queues()
315 for (uint32_t i = 0; i < queue_node_count; i++) { in init_queues()
Dvklayertests_others.cpp158 uint32_t queue_node_count; in TEST_F() local
159 vkGetPhysicalDeviceQueueFamilyProperties(gpu(), &queue_node_count, NULL); in TEST_F()
160 VkQueueFamilyProperties *queue_props = new VkQueueFamilyProperties[queue_node_count]; in TEST_F()
161 vkGetPhysicalDeviceQueueFamilyProperties(gpu(), &queue_node_count, queue_props); in TEST_F()