Home
last modified time | relevance | path

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

/frameworks/native/libs/renderengine/skia/
DVulkanInterface.cpp382 std::vector<VkQueueFamilyProperties2> queueProps(queueCount); in init() local
391 queueProps[i].pNext = &queuePriorityProps[i]; in init()
393 vkGetPhysicalDeviceQueueFamilyProperties2(physicalDevice, &queueCount, queueProps.data()); in init()
399 if (queueProps[i].queueFamilyProperties.queueFlags & VK_QUEUE_GRAPHICS_BIT) { in init()
/frameworks/base/libs/hwui/renderthread/
DVulkanManager.cpp231 std::unique_ptr<VkQueueFamilyProperties[]> queueProps(new VkQueueFamilyProperties[queueCount]); in setupDevice() local
232 mGetPhysicalDeviceQueueFamilyProperties(mPhysicalDevice, &queueCount, queueProps.get()); in setupDevice()
239 if (queueProps[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) { in setupDevice()
241 LOG_ALWAYS_FATAL_IF(queueProps[i].queueCount < kRequestedQueueCount); in setupDevice()