Home
last modified time | relevance | path

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

/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvulkan_enums.hpp2290 enum class SparseImageFormatFlagBits : VkSparseImageFormatFlags enum
2297 using SparseImageFormatFlags = Flags<SparseImageFormatFlagBits>;
2300 template <> struct FlagTraits<SparseImageFormatFlagBits>
2304 SparseImageFormatFlagBits::eSingleMiptail
2305 | SparseImageFormatFlagBits::eAlignedMipSize
2306 | SparseImageFormatFlagBits::eNonstandardBlockSize;
Dvulkan_to_string.hpp297 if ( value & SparseImageFormatFlagBits::eSingleMiptail ) result += "SingleMiptail | "; in to_string()
298 if ( value & SparseImageFormatFlagBits::eAlignedMipSize ) result += "AlignedMipSize | "; in to_string()
299 …if ( value & SparseImageFormatFlagBits::eNonstandardBlockSize ) result += "NonstandardBlockSize | … in to_string()
4332 VULKAN_HPP_INLINE std::string to_string( SparseImageFormatFlagBits value ) in to_string()
4336 case SparseImageFormatFlagBits::eSingleMiptail : return "SingleMiptail"; in to_string()
4337 case SparseImageFormatFlagBits::eAlignedMipSize : return "AlignedMipSize"; in to_string()
4338 case SparseImageFormatFlagBits::eNonstandardBlockSize : return "NonstandardBlockSize"; in to_string()