blob: 503a71b40f1213b8f9b10d2db01ccd4f7211310f [file] [log] [blame]
#pragma once
#include <cstdint>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#ifdef BINDER_STABILITY_SUPPORT
#include <android/binder_stability.h>
#endif // BINDER_STABILITY_SUPPORT
#include <array>
#include <android/binder_enums.h>
namespace aidl {
namespace android {
namespace hardware {
namespace graphics {
namespace common {
enum class PixelFormat : int32_t {
UNSPECIFIED = 0,
RGBA_8888 = 1,
RGBX_8888 = 2,
RGB_888 = 3,
RGB_565 = 4,
BGRA_8888 = 5,
YCBCR_422_SP = 16,
YCRCB_420_SP = 17,
YCBCR_422_I = 20,
RGBA_FP16 = 22,
RAW16 = 32,
BLOB = 33,
IMPLEMENTATION_DEFINED = 34,
YCBCR_420_888 = 35,
RAW_OPAQUE = 36,
RAW10 = 37,
RAW12 = 38,
RGBA_1010102 = 43,
Y8 = 538982489,
Y16 = 540422489,
YV12 = 842094169,
DEPTH_16 = 48,
DEPTH_24 = 49,
DEPTH_24_STENCIL_8 = 50,
DEPTH_32F = 51,
DEPTH_32F_STENCIL_8 = 52,
STENCIL_8 = 53,
YCBCR_P010 = 54,
HSV_888 = 55,
};
static inline std::string toString(PixelFormat val) {
switch(val) {
case PixelFormat::UNSPECIFIED:
return "UNSPECIFIED";
case PixelFormat::RGBA_8888:
return "RGBA_8888";
case PixelFormat::RGBX_8888:
return "RGBX_8888";
case PixelFormat::RGB_888:
return "RGB_888";
case PixelFormat::RGB_565:
return "RGB_565";
case PixelFormat::BGRA_8888:
return "BGRA_8888";
case PixelFormat::YCBCR_422_SP:
return "YCBCR_422_SP";
case PixelFormat::YCRCB_420_SP:
return "YCRCB_420_SP";
case PixelFormat::YCBCR_422_I:
return "YCBCR_422_I";
case PixelFormat::RGBA_FP16:
return "RGBA_FP16";
case PixelFormat::RAW16:
return "RAW16";
case PixelFormat::BLOB:
return "BLOB";
case PixelFormat::IMPLEMENTATION_DEFINED:
return "IMPLEMENTATION_DEFINED";
case PixelFormat::YCBCR_420_888:
return "YCBCR_420_888";
case PixelFormat::RAW_OPAQUE:
return "RAW_OPAQUE";
case PixelFormat::RAW10:
return "RAW10";
case PixelFormat::RAW12:
return "RAW12";
case PixelFormat::RGBA_1010102:
return "RGBA_1010102";
case PixelFormat::Y8:
return "Y8";
case PixelFormat::Y16:
return "Y16";
case PixelFormat::YV12:
return "YV12";
case PixelFormat::DEPTH_16:
return "DEPTH_16";
case PixelFormat::DEPTH_24:
return "DEPTH_24";
case PixelFormat::DEPTH_24_STENCIL_8:
return "DEPTH_24_STENCIL_8";
case PixelFormat::DEPTH_32F:
return "DEPTH_32F";
case PixelFormat::DEPTH_32F_STENCIL_8:
return "DEPTH_32F_STENCIL_8";
case PixelFormat::STENCIL_8:
return "STENCIL_8";
case PixelFormat::YCBCR_P010:
return "YCBCR_P010";
case PixelFormat::HSV_888:
return "HSV_888";
default:
return std::to_string(static_cast<int32_t>(val));
}
}
} // namespace common
} // namespace graphics
} // namespace hardware
} // namespace android
} // namespace aidl
namespace ndk {
namespace internal {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wc++17-extensions"
template <>
constexpr inline std::array<aidl::android::hardware::graphics::common::PixelFormat, 29> enum_values<aidl::android::hardware::graphics::common::PixelFormat> = {
aidl::android::hardware::graphics::common::PixelFormat::UNSPECIFIED,
aidl::android::hardware::graphics::common::PixelFormat::RGBA_8888,
aidl::android::hardware::graphics::common::PixelFormat::RGBX_8888,
aidl::android::hardware::graphics::common::PixelFormat::RGB_888,
aidl::android::hardware::graphics::common::PixelFormat::RGB_565,
aidl::android::hardware::graphics::common::PixelFormat::BGRA_8888,
aidl::android::hardware::graphics::common::PixelFormat::YCBCR_422_SP,
aidl::android::hardware::graphics::common::PixelFormat::YCRCB_420_SP,
aidl::android::hardware::graphics::common::PixelFormat::YCBCR_422_I,
aidl::android::hardware::graphics::common::PixelFormat::RGBA_FP16,
aidl::android::hardware::graphics::common::PixelFormat::RAW16,
aidl::android::hardware::graphics::common::PixelFormat::BLOB,
aidl::android::hardware::graphics::common::PixelFormat::IMPLEMENTATION_DEFINED,
aidl::android::hardware::graphics::common::PixelFormat::YCBCR_420_888,
aidl::android::hardware::graphics::common::PixelFormat::RAW_OPAQUE,
aidl::android::hardware::graphics::common::PixelFormat::RAW10,
aidl::android::hardware::graphics::common::PixelFormat::RAW12,
aidl::android::hardware::graphics::common::PixelFormat::RGBA_1010102,
aidl::android::hardware::graphics::common::PixelFormat::Y8,
aidl::android::hardware::graphics::common::PixelFormat::Y16,
aidl::android::hardware::graphics::common::PixelFormat::YV12,
aidl::android::hardware::graphics::common::PixelFormat::DEPTH_16,
aidl::android::hardware::graphics::common::PixelFormat::DEPTH_24,
aidl::android::hardware::graphics::common::PixelFormat::DEPTH_24_STENCIL_8,
aidl::android::hardware::graphics::common::PixelFormat::DEPTH_32F,
aidl::android::hardware::graphics::common::PixelFormat::DEPTH_32F_STENCIL_8,
aidl::android::hardware::graphics::common::PixelFormat::STENCIL_8,
aidl::android::hardware::graphics::common::PixelFormat::YCBCR_P010,
aidl::android::hardware::graphics::common::PixelFormat::HSV_888,
};
#pragma clang diagnostic pop
} // namespace internal
} // namespace android