OSDN Git Service

minigbm: rework flag API
[android-x86/external-minigbm.git] / helpers.h
index aa549b0..e265b42 100644 (file)
--- a/helpers.h
+++ b/helpers.h
@@ -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.
  */
@@ -16,6 +16,7 @@ int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height,
                       uint32_t format, uint32_t flags);
 int drv_dumb_bo_destroy(struct bo *bo);
 int drv_gem_bo_destroy(struct bo *bo);
+int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data);
 void *drv_dumb_bo_map(struct bo *bo, struct map_info *data, size_t plane);
 uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo,
                                  size_t plane);
@@ -24,10 +25,14 @@ void drv_increment_reference_count(struct driver *drv, struct bo *bo,
 void drv_decrement_reference_count(struct driver *drv, struct bo *bo,
                                   size_t plane);
 uint32_t drv_log_base2(uint32_t value);
-void drv_insert_supported_combination(struct driver *drv, uint32_t format,
-                                     uint64_t usage, uint64_t modifier);
-void drv_insert_combinations(struct driver *drv,
-                            struct supported_combination *combos,
-                            uint32_t size);
-int drv_add_kms_flags(struct driver *drv);
+int drv_add_combination(struct driver *drv, uint32_t format,
+                       struct format_metadata *metadata, uint64_t usage);
+int drv_add_combinations(struct driver *drv, const uint32_t *formats,
+                        uint32_t num_formats, struct format_metadata *metadata,
+                        uint64_t usage);
+void drv_modify_combination(struct driver *drv, uint32_t format,
+                           struct format_metadata *metadata, uint64_t usage);
+struct kms_item *drv_query_kms(struct driver *drv, uint32_t *num_items);
+int drv_add_linear_combinations(struct driver *drv, const uint32_t *formats,
+                               uint32_t num_formats);
 #endif