Home
last modified time | relevance | path

Searched refs:queueFlags (Results 1 – 23 of 23) sorted by relevance

/hardware/google/gfxstream/host/tests/
DVulkan_unittest.cpp77 static std::string queueFlagsToString(VkQueueFlags queueFlags) { in queueFlagsToString() argument
80 if (queueFlags & VK_QUEUE_GRAPHICS_BIT) { in queueFlagsToString()
83 if (queueFlags & VK_QUEUE_COMPUTE_BIT) { in queueFlagsToString()
86 if (queueFlags & VK_QUEUE_TRANSFER_BIT) { in queueFlagsToString()
89 if (queueFlags & VK_QUEUE_SPARSE_BINDING_BIT) { in queueFlagsToString()
92 if (queueFlags & VK_QUEUE_PROTECTED_BIT) { in queueFlagsToString()
257 auto flags = queueFamilies[j].queueFlags; in testDeviceCreation()
323 auto flags = queueFamilies[i].queueFlags; in testDeviceCreation()
DCompositorVk_unittest.cpp363 properties.queueFlags &= ~VK_QUEUE_GRAPHICS_BIT; in TEST_F()
366 properties.queueFlags |= VK_QUEUE_GRAPHICS_BIT; in TEST_F()
/hardware/google/gfxstream/host/vulkan/testing/
DVulkanTestHelper.cpp240 uint32_t VulkanTestHelper::getQueueFamilyIndex(VkQueueFlagBits queueFlags) { in getQueueFamilyIndex() argument
248 if (queueFamilies[i].queueFlags & queueFlags) { in getQueueFamilyIndex()
DVulkanTestHelper.h78 uint32_t getQueueFamilyIndex(VkQueueFlagBits queueFlags);
/hardware/google/gfxstream/host/vulkan/
DCompositorVk.h161 return properties.queueFlags & VK_QUEUE_GRAPHICS_BIT; in queueSupportsComposition()
DVkCommonOperations.cpp907 auto flags = queueFamilyProps[j].queueFlags; in createGlobalVkEmulation()
DVkDecoderGlobalState.cpp442 if ((queueFamilyProps[idx].queueFlags & VK_QUEUE_GRAPHICS_BIT) == 0) { in createSnapshotStateBlock()
/hardware/google/gfxstream/common/end2end/
DGfxstreamEnd2EndVkSnapshotImageTests.cpp91 if (prop.queueFlags & vkhpp::QueueFlagBits::eGraphics) { in TEST_P()
DGfxstreamEnd2EndTests.cpp566 if (prop.queueFlags & vkhpp::QueueFlagBits::eGraphics) { in SetUpTypicalVkTestEnvironment()
/hardware/google/gfxstream/common/detector/
DVulkan.cpp206 if (prop.queueFlags & vkhpp::QueueFlagBits::eGraphics) { in Load()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/proposals/
DVK_KHR_video_decode_h265.adoc204 …if ((props[queueFamilyIndex].queueFamilyProperties.queueFlags & VK_QUEUE_VIDEO_DECODE_BIT_KHR) != …
DVK_KHR_video_decode_h264.adoc238 …if ((props[queueFamilyIndex].queueFamilyProperties.queueFlags & VK_QUEUE_VIDEO_DECODE_BIT_KHR) != …
DVK_KHR_video_decode_queue.adoc318 …if ((props[queueFamilyIndex].queueFamilyProperties.queueFlags & VK_QUEUE_VIDEO_DECODE_BIT_KHR) != …
/hardware/google/gfxstream/guest/mesa/src/vulkan/overlay-layer/
Doverlay.cpp394 data->flags = family_props->queueFlags; in new_queue_data()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/
Ddevsandqueues.adoc1269 * pname:queueFlags is a bitmask of elink:VkQueueFlagBits indicating
1344 Bits which may: be set in slink:VkQueueFamilyProperties::pname:queueFlags,
Dlimits.adoc743 sname:VkQueueFamilyProperties::pname:queueFlags support
/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvulkansc_hash.hpp6103 VULKAN_HPP_HASH_COMBINE( seed, queueFamilyProperties.queueFlags ); in operator ()()
Dvulkan_hash.hpp11791 VULKAN_HPP_HASH_COMBINE( seed, queueFamilyProperties.queueFlags ); in operator ()()
/hardware/google/gfxstream/guest/vulkan_enc/
Dgoldfish_vk_marshaling_guest.cpp1115 vkStream->write((VkQueueFlags*)&forMarshaling->queueFlags, sizeof(VkQueueFlags)); in marshal_VkQueueFamilyProperties()
1125 vkStream->read((VkQueueFlags*)&forUnmarshaling->queueFlags, sizeof(VkQueueFlags)); in unmarshal_VkQueueFamilyProperties()
Dgoldfish_vk_reserved_marshaling_guest.cpp950 memcpy(*ptr, (VkQueueFlags*)&forMarshaling->queueFlags, sizeof(VkQueueFlags)); in reservedmarshal_VkQueueFamilyProperties()
/hardware/google/gfxstream/host/vulkan/cereal/common/
Dgoldfish_vk_marshaling.cpp1176 vkStream->write((VkQueueFlags*)&forMarshaling->queueFlags, sizeof(VkQueueFlags)); in marshal_VkQueueFamilyProperties()
1186 vkStream->read((VkQueueFlags*)&forUnmarshaling->queueFlags, sizeof(VkQueueFlags)); in unmarshal_VkQueueFamilyProperties()
Dgoldfish_vk_reserved_marshaling.cpp934 memcpy((VkQueueFlags*)&forUnmarshaling->queueFlags, *ptr, sizeof(VkQueueFlags)); in reservedunmarshal_VkQueueFamilyProperties()
/hardware/google/gfxstream/guest/mesa/include/vulkan/
Dvulkan_core.h3210 VkQueueFlags queueFlags; member