OSDN Git Service

Add new GBM_BO_IMPORT_FD_PLANAR
[android-x86/external-minigbm.git] / gbm.h
diff --git a/gbm.h b/gbm.h
index cc36b72..87c1eb7 100644 (file)
--- a/gbm.h
+++ b/gbm.h
@@ -262,6 +262,7 @@ gbm_bo_create(struct gbm_device *gbm,
 #define GBM_BO_IMPORT_WL_BUFFER         0x5501
 #define GBM_BO_IMPORT_EGL_IMAGE         0x5502
 #define GBM_BO_IMPORT_FD                0x5503
+#define GBM_BO_IMPORT_FD_PLANAR         0x5504
 
 struct gbm_import_fd_data {
    int fd;
@@ -271,6 +272,16 @@ struct gbm_import_fd_data {
    uint32_t format;
 };
 
+struct gbm_import_fd_planar_data {
+   int fds[4];
+   uint32_t width;
+   uint32_t height;
+   uint32_t format;
+   uint32_t offsets[4];
+   uint32_t strides[4];
+   uint64_t format_modifiers[4];
+};
+
 struct gbm_bo *
 gbm_bo_import(struct gbm_device *gbm, uint32_t type,
               void *buffer, uint32_t usage);