diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2015-10-28 22:18:23 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2015-11-06 22:27:12 +0200 |
commit | 6d29a7676b1857cadc559708c2762ef01082d899 (patch) | |
tree | fd4141b5d196035cc63da61fac5ee96d5e7eab3c | |
parent | a15dcd9f9a7abda566dfad615303c910bd47749a (diff) |
pixelformat: add undefined
-rw-r--r-- | libkms++/pixelformats.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libkms++/pixelformats.h b/libkms++/pixelformats.h index 693dcee..d6f41d7 100644 --- a/libkms++/pixelformats.h +++ b/libkms++/pixelformats.h @@ -9,6 +9,8 @@ constexpr uint32_t MakeFourCC(const char *fourcc) enum class PixelFormat : uint32_t { + Undefined = 0, + NV12 = MakeFourCC("NV12"), NV21 = MakeFourCC("NV21"), |