OSDN Git Service

minigbm: add drv_bo_flush
[android-x86/external-minigbm.git] / drv_priv.h
index df5c8e9..e7b2d25 100644 (file)
@@ -26,19 +26,11 @@ struct bo {
        uint32_t sizes[DRV_MAX_PLANES];
        uint32_t strides[DRV_MAX_PLANES];
        uint64_t format_modifiers[DRV_MAX_PLANES];
+       uint64_t flags;
        size_t total_size;
        void *priv;
 };
 
-struct driver {
-       int fd;
-       struct backend *backend;
-       void *priv;
-       void *buffer_table;
-       void *map_table;
-       pthread_mutex_t driver_lock;
-};
-
 struct kms_item {
        uint32_t format;
        uint64_t modifier;
@@ -63,6 +55,16 @@ struct combinations {
        uint32_t allocations;
 };
 
+struct driver {
+       int fd;
+       struct backend *backend;
+       void *priv;
+       void *buffer_table;
+       void *map_table;
+       struct combinations combos;
+       pthread_mutex_t driver_lock;
+};
+
 struct backend {
        char *name;
        int (*init)(struct driver *drv);
@@ -73,19 +75,20 @@ struct backend {
                                        uint32_t format, const uint64_t *modifiers, uint32_t count);
        int (*bo_destroy)(struct bo *bo);
        int (*bo_import)(struct bo *bo, struct drv_import_fd_data *data);
-       void *(*bo_map)(struct bo *bo, struct map_info *data, size_t plane);
+       void *(*bo_map)(struct bo *bo, struct map_info *data, size_t plane, int prot);
        int (*bo_unmap)(struct bo *bo, struct map_info *data);
-       uint32_t (*resolve_format)(uint32_t format);
-       struct combinations combos;
+       int (*bo_flush)(struct bo *bo, struct map_info *data);
+       uint32_t (*resolve_format)(uint32_t format, uint64_t usage);
 };
 
 // clang-format off
-#define BO_USE_RENDER_MASK BO_USE_LINEAR | BO_USE_RENDERING | BO_USE_SW_READ_OFTEN | \
-                          BO_USE_SW_WRITE_OFTEN | BO_USE_SW_READ_RARELY | \
+#define BO_USE_RENDER_MASK BO_USE_LINEAR | BO_USE_RENDERING | BO_USE_RENDERSCRIPT | \
+                          BO_USE_SW_READ_OFTEN | BO_USE_SW_WRITE_OFTEN | BO_USE_SW_READ_RARELY | \
                           BO_USE_SW_WRITE_RARELY | BO_USE_TEXTURE
 
-#define BO_USE_TEXTURE_MASK BO_USE_LINEAR | BO_USE_SW_READ_OFTEN | BO_USE_SW_WRITE_OFTEN | \
-                           BO_USE_SW_READ_RARELY | BO_USE_SW_WRITE_RARELY | BO_USE_TEXTURE
+#define BO_USE_TEXTURE_MASK BO_USE_LINEAR | BO_USE_RENDERSCRIPT | BO_USE_SW_READ_OFTEN | \
+                           BO_USE_SW_WRITE_OFTEN | BO_USE_SW_READ_RARELY | \
+                           BO_USE_SW_WRITE_RARELY | BO_USE_TEXTURE
 
 #define LINEAR_METADATA (struct format_metadata) { 0, 1, DRM_FORMAT_MOD_NONE }
 // clang-format on