Home
last modified time | relevance | path

Searched refs:QueueFlagBits (Results 1 – 7 of 7) sorted by relevance

/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvulkansc_to_string.hpp146 if ( value & QueueFlagBits::eGraphics ) result += "Graphics | "; in to_string()
147 if ( value & QueueFlagBits::eCompute ) result += "Compute | "; in to_string()
148 if ( value & QueueFlagBits::eTransfer ) result += "Transfer | "; in to_string()
149 if ( value & QueueFlagBits::eProtected ) result += "Protected | "; in to_string()
2166 VULKAN_HPP_INLINE std::string to_string( QueueFlagBits value ) in to_string()
2170 case QueueFlagBits::eGraphics : return "Graphics"; in to_string()
2171 case QueueFlagBits::eCompute : return "Compute"; in to_string()
2172 case QueueFlagBits::eTransfer : return "Transfer"; in to_string()
2173 case QueueFlagBits::eProtected : return "Protected"; in to_string()
Dvulkan_to_string.hpp182 if ( value & QueueFlagBits::eGraphics ) result += "Graphics | "; in to_string()
183 if ( value & QueueFlagBits::eCompute ) result += "Compute | "; in to_string()
184 if ( value & QueueFlagBits::eTransfer ) result += "Transfer | "; in to_string()
185 if ( value & QueueFlagBits::eSparseBinding ) result += "SparseBinding | "; in to_string()
186 if ( value & QueueFlagBits::eProtected ) result += "Protected | "; in to_string()
187 if ( value & QueueFlagBits::eVideoDecodeKHR ) result += "VideoDecodeKHR | "; in to_string()
189 if ( value & QueueFlagBits::eVideoEncodeKHR ) result += "VideoEncodeKHR | "; in to_string()
191 if ( value & QueueFlagBits::eOpticalFlowNV ) result += "OpticalFlowNV | "; in to_string()
4198 VULKAN_HPP_INLINE std::string to_string( QueueFlagBits value ) in to_string()
4202 case QueueFlagBits::eGraphics : return "Graphics"; in to_string()
[all …]
Dvulkansc_enums.hpp1207 enum class QueueFlagBits : VkQueueFlags enum
1215 using QueueFlags = Flags<QueueFlagBits>;
1218 template <> struct FlagTraits<QueueFlagBits>
1222 QueueFlagBits::eGraphics
1223 | QueueFlagBits::eCompute
1224 | QueueFlagBits::eTransfer
1225 | QueueFlagBits::eProtected;
Dvulkan_enums.hpp2068 enum class QueueFlagBits : VkQueueFlags enum
2082 using QueueFlags = Flags<QueueFlagBits>;
2085 template <> struct FlagTraits<QueueFlagBits>
2089 QueueFlagBits::eGraphics
2090 | QueueFlagBits::eCompute
2091 | QueueFlagBits::eTransfer
2092 | QueueFlagBits::eSparseBinding
2093 | QueueFlagBits::eProtected
2094 | QueueFlagBits::eVideoDecodeKHR
2096 | QueueFlagBits::eVideoEncodeKHR
[all …]
/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()