Searched refs:MemoryPropertyFlagBits (Results 1 – 11 of 11) sorted by relevance
/hardware/google/gfxstream/common/end2end/ |
D | GfxstreamEnd2EndVkSnapshotBufferTests.cpp | 58 vkhpp::MemoryPropertyFlagBits::eHostVisible | vkhpp::MemoryPropertyFlagBits::eHostCoherent); in TEST_P() 102 vkhpp::MemoryPropertyFlagBits::eDeviceLocal); in TEST_P() 171 vkhpp::MemoryPropertyFlagBits::eHostVisible | vkhpp::MemoryPropertyFlagBits::eHostCoherent); in TEST_P() 243 vkhpp::MemoryPropertyFlagBits::eHostVisible | vkhpp::MemoryPropertyFlagBits::eHostCoherent); in TEST_P()
|
D | GfxstreamEnd2EndVkSnapshotImageTests.cpp | 63 physicalDevice, imageMemoryRequirements, vkhpp::MemoryPropertyFlagBits::eDeviceLocal); in TEST_P() 145 physicalDevice, imageMemoryRequirements, vkhpp::MemoryPropertyFlagBits::eDeviceLocal); in TEST_P() 192 physicalDevice, imageMemoryRequirements, vkhpp::MemoryPropertyFlagBits::eDeviceLocal); in TEST_P() 267 physicalDevice, imageMemoryRequirements, vkhpp::MemoryPropertyFlagBits::eDeviceLocal); in TEST_P() 312 physicalDevice, imageMemoryRequirements, vkhpp::MemoryPropertyFlagBits::eDeviceLocal); in TEST_P() 379 vkhpp::MemoryPropertyFlagBits::eHostVisible | vkhpp::MemoryPropertyFlagBits::eHostCoherent); in TEST_P() 430 physicalDevice, imageMemoryRequirements, vkhpp::MemoryPropertyFlagBits::eDeviceLocal); in TEST_P()
|
D | GfxstreamEnd2EndVkTests.cpp | 90 physicalDevice, imageMemoryRequirements, vkhpp::MemoryPropertyFlagBits::eDeviceLocal); in DoAcquireImageAndroidWithSync() 170 physicalDevice, imageMemoryRequirements, vkhpp::MemoryPropertyFlagBits::eDeviceLocal); in TEST_P() 196 vkhpp::MemoryPropertyFlagBits::eHostVisible | vkhpp::MemoryPropertyFlagBits::eHostCoherent); in TEST_P() 366 EXPECT_THAT(memoryPropertyFlags & vkhpp::MemoryPropertyFlagBits::eHostVisible, in TEST_P() 367 Ne(vkhpp::MemoryPropertyFlagBits::eHostVisible)); in TEST_P() 371 vkhpp::MemoryPropertyFlagBits::eDeviceLocal); in TEST_P() 398 if (memoryType.propertyFlags & vkhpp::MemoryPropertyFlagBits::eHostVisible) { in TEST_P() 887 vkhpp::MemoryPropertyFlagBits::eHostVisible | vkhpp::MemoryPropertyFlagBits::eHostCoherent); in TEST_P()
|
D | GfxstreamEnd2EndTestUtils.cpp | 67 vkhpp::MemoryPropertyFlagBits::eHostVisible | vkhpp::MemoryPropertyFlagBits::eHostCoherent); in readImageData()
|
D | GfxstreamEnd2EndVkSnapshotPipelineTests.cpp | 106 vkhpp::MemoryPropertyFlagBits::eHostVisible | vkhpp::MemoryPropertyFlagBits::eHostCoherent); in createAndPopulateBuffer() 311 physicalDevice, imageMemoryRequirements, vkhpp::MemoryPropertyFlagBits::eDeviceLocal); in createColorAttachment()
|
/hardware/google/gfxstream/common/detector/ |
D | Vulkan.cpp | 243 vkhpp::MemoryPropertyFlagBits::eHostVisible | in Load() 244 vkhpp::MemoryPropertyFlagBits::eHostCoherent)); in Load() 811 vkhpp::MemoryPropertyFlagBits::eDeviceLocal, in CreateFramebuffer() 821 vkhpp::MemoryPropertyFlagBits::eDeviceLocal, in CreateFramebuffer()
|
D | GraphicsDetectorVkPrecisionQualifiersOnYuvSamplers.cpp | 71 vkhpp::MemoryPropertyFlagBits::eDeviceLocal, in CanHandlePrecisionQualifierWithYuvSampler()
|
/hardware/google/gfxstream/common/vulkan/include/vulkan/ |
D | vulkansc_to_string.hpp | 130 if ( value & MemoryPropertyFlagBits::eDeviceLocal ) result += "DeviceLocal | "; in to_string() 131 if ( value & MemoryPropertyFlagBits::eHostVisible ) result += "HostVisible | "; in to_string() 132 if ( value & MemoryPropertyFlagBits::eHostCoherent ) result += "HostCoherent | "; in to_string() 133 if ( value & MemoryPropertyFlagBits::eHostCached ) result += "HostCached | "; in to_string() 134 if ( value & MemoryPropertyFlagBits::eLazilyAllocated ) result += "LazilyAllocated | "; in to_string() 135 if ( value & MemoryPropertyFlagBits::eProtected ) result += "Protected | "; in to_string() 2135 VULKAN_HPP_INLINE std::string to_string( MemoryPropertyFlagBits value ) in to_string() 2139 case MemoryPropertyFlagBits::eDeviceLocal : return "DeviceLocal"; in to_string() 2140 case MemoryPropertyFlagBits::eHostVisible : return "HostVisible"; in to_string() 2141 case MemoryPropertyFlagBits::eHostCoherent : return "HostCoherent"; in to_string() [all …]
|
D | vulkansc_enums.hpp | 1173 enum class MemoryPropertyFlagBits : VkMemoryPropertyFlags enum 1183 using MemoryPropertyFlags = Flags<MemoryPropertyFlagBits>; 1186 template <> struct FlagTraits<MemoryPropertyFlagBits> 1190 MemoryPropertyFlagBits::eDeviceLocal 1191 | MemoryPropertyFlagBits::eHostVisible 1192 | MemoryPropertyFlagBits::eHostCoherent 1193 | MemoryPropertyFlagBits::eHostCached 1194 | MemoryPropertyFlagBits::eLazilyAllocated 1195 | MemoryPropertyFlagBits::eProtected;
|
D | vulkan_to_string.hpp | 163 if ( value & MemoryPropertyFlagBits::eDeviceLocal ) result += "DeviceLocal | "; in to_string() 164 if ( value & MemoryPropertyFlagBits::eHostVisible ) result += "HostVisible | "; in to_string() 165 if ( value & MemoryPropertyFlagBits::eHostCoherent ) result += "HostCoherent | "; in to_string() 166 if ( value & MemoryPropertyFlagBits::eHostCached ) result += "HostCached | "; in to_string() 167 if ( value & MemoryPropertyFlagBits::eLazilyAllocated ) result += "LazilyAllocated | "; in to_string() 168 if ( value & MemoryPropertyFlagBits::eProtected ) result += "Protected | "; in to_string() 169 if ( value & MemoryPropertyFlagBits::eDeviceCoherentAMD ) result += "DeviceCoherentAMD | "; in to_string() 170 if ( value & MemoryPropertyFlagBits::eDeviceUncachedAMD ) result += "DeviceUncachedAMD | "; in to_string() 171 if ( value & MemoryPropertyFlagBits::eRdmaCapableNV ) result += "RdmaCapableNV | "; in to_string() 4164 VULKAN_HPP_INLINE std::string to_string( MemoryPropertyFlagBits value ) in to_string() [all …]
|
D | vulkan_enums.hpp | 2028 enum class MemoryPropertyFlagBits : VkMemoryPropertyFlags enum 2041 using MemoryPropertyFlags = Flags<MemoryPropertyFlagBits>; 2044 template <> struct FlagTraits<MemoryPropertyFlagBits> 2048 MemoryPropertyFlagBits::eDeviceLocal 2049 | MemoryPropertyFlagBits::eHostVisible 2050 | MemoryPropertyFlagBits::eHostCoherent 2051 | MemoryPropertyFlagBits::eHostCached 2052 | MemoryPropertyFlagBits::eLazilyAllocated 2053 | MemoryPropertyFlagBits::eProtected 2054 | MemoryPropertyFlagBits::eDeviceCoherentAMD [all …]
|