OSDN Git Service

minigbm/i915: Add support for I915_FORMAT_MOD_Y_TILED_CCS.
[android-x86/external-minigbm.git] / gbm_priv.h
index 1879704..3dc1e59 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
+ * Copyright 2014 The Chromium OS Authors. All rights reserved.
  * Use of this source code is governed by a BSD-style license that can be
  * found in the LICENSE file.
  */
@@ -8,52 +8,25 @@
 #define GBM_PRIV_H
 
 #include <stdint.h>
-#include <sys/types.h>
 #include <stdlib.h>
-#include "gbm.h"
+#include <sys/types.h>
 
-#define GBM_MAX_PLANES 4
+#include "drv.h"
+#include "gbm.h"
 
-struct gbm_device
-{
-       int fd;
-       struct gbm_driver *driver;
-       void *priv;
+struct gbm_device {
+       struct driver *drv;
 };
 
-struct gbm_surface
-{
+struct gbm_surface {
 };
 
-struct gbm_bo
-{
+struct gbm_bo {
        struct gbm_device *gbm;
-       uint32_t width;
-       uint32_t height;
-       uint32_t format;
-       uint32_t tiling;
-       size_t num_planes;
-       union gbm_bo_handle handles[GBM_MAX_PLANES];
-       uint32_t offsets[GBM_MAX_PLANES];
-       uint32_t sizes[GBM_MAX_PLANES];
-       uint32_t strides[GBM_MAX_PLANES];
-       void *priv;
+       struct bo *bo;
+       uint32_t gbm_format;
        void *user_data;
        void (*destroy_user_data)(struct gbm_bo *, void *);
 };
 
-struct gbm_driver
-{
-       char *name;
-       int (*init)(struct gbm_device *gbm);
-       void (*close)(struct gbm_device *gbm);
-       int (*bo_create)(struct gbm_bo *bo, uint32_t width, uint32_t height, uint32_t format, uint32_t flags);
-       int (*bo_destroy)(struct gbm_bo *bo);
-       struct format_supported {
-               uint32_t format;
-               enum gbm_bo_flags usage;
-       }
-       format_list[16];
-};
-
 #endif