Searched refs:SparseImageFormatFlagBits (Results 1 – 2 of 2) sorted by relevance
2290 enum class SparseImageFormatFlagBits : VkSparseImageFormatFlags enum2297 using SparseImageFormatFlags = Flags<SparseImageFormatFlagBits>;2300 template <> struct FlagTraits<SparseImageFormatFlagBits>2304 SparseImageFormatFlagBits::eSingleMiptail2305 | SparseImageFormatFlagBits::eAlignedMipSize2306 | SparseImageFormatFlagBits::eNonstandardBlockSize;
297 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()