summaryrefslogtreecommitdiff
path: root/subprojects/pixpat/pixpat-native/src/formats.h
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/pixpat/pixpat-native/src/formats.h')
-rw-r--r--subprojects/pixpat/pixpat-native/src/formats.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/subprojects/pixpat/pixpat-native/src/formats.h b/subprojects/pixpat/pixpat-native/src/formats.h
new file mode 100644
index 0000000..68bdeec
--- /dev/null
+++ b/subprojects/pixpat/pixpat-native/src/formats.h
@@ -0,0 +1,13 @@
+#pragma once
+
+// Aggregator: every named layout the X-macro registers lives in one of
+// the headers under formats/, organized by color kind. Format names
+// follow the kms++/pixutils convention (see formats/rgb.h for the
+// longer note; the YUYV group is an exception, see formats/yuv_packed.h).
+
+#include "formats/rgb.h"
+#include "formats/yuv_semiplanar.h"
+#include "formats/yuv_planar.h"
+#include "formats/yuv_packed.h"
+#include "formats/grayscale.h"
+#include "formats/bayer.h"