Home
last modified time | relevance | path

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

/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvulkan_enums.hpp5066 enum class VideoComponentBitDepthFlagBitsKHR : VkVideoComponentBitDepthFlagsKHR enum
5074 using VideoComponentBitDepthFlagsKHR = Flags<VideoComponentBitDepthFlagBitsKHR>;
5077 template <> struct FlagTraits<VideoComponentBitDepthFlagBitsKHR>
5081 VideoComponentBitDepthFlagBitsKHR::eInvalid
5082 | VideoComponentBitDepthFlagBitsKHR::e8
5083 | VideoComponentBitDepthFlagBitsKHR::e10
5084 | VideoComponentBitDepthFlagBitsKHR::e12;
Dvulkan_to_string.hpp1516 if ( value & VideoComponentBitDepthFlagBitsKHR::e8 ) result += "8 | "; in to_string()
1517 if ( value & VideoComponentBitDepthFlagBitsKHR::e10 ) result += "10 | "; in to_string()
1518 if ( value & VideoComponentBitDepthFlagBitsKHR::e12 ) result += "12 | "; in to_string()
6417 VULKAN_HPP_INLINE std::string to_string( VideoComponentBitDepthFlagBitsKHR value ) in to_string()
6421 case VideoComponentBitDepthFlagBitsKHR::eInvalid : return "Invalid"; in to_string()
6422 case VideoComponentBitDepthFlagBitsKHR::e8 : return "8"; in to_string()
6423 case VideoComponentBitDepthFlagBitsKHR::e10 : return "10"; in to_string()
6424 case VideoComponentBitDepthFlagBitsKHR::e12 : return "12"; in to_string()