OSDN Git Service

Distinguish COMPOSER_TARGET_BUFFER
[android-x86/external-minigbm.git] / helpers.h
1 /*
2  * Copyright 2014 The Chromium OS Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6
7 #ifndef HELPERS_H
8 #define HELPERS_H
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 #include <stdbool.h>
15
16 #include "drv.h"
17 #include "helpers_array.h"
18
19 uint32_t drv_height_from_format(uint32_t format, uint32_t height, size_t plane);
20 uint32_t drv_vertical_subsampling_from_format(uint32_t format, size_t plane);
21 uint32_t drv_size_from_format(uint32_t format, uint32_t stride, uint32_t height, size_t plane);
22 int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format);
23 int drv_bo_from_format_and_padding(struct bo *bo, uint32_t stride, uint32_t aligned_height,
24                                    uint32_t format, uint32_t padding[DRV_MAX_PLANES]);
25 int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
26                        uint64_t use_flags);
27 int drv_dumb_bo_create_ex(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
28                           uint64_t use_flags, uint64_t quirks);
29 int drv_dumb_bo_destroy(struct bo *bo);
30 int drv_gem_bo_destroy(struct bo *bo);
31 int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data);
32 void *drv_dumb_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags);
33 int drv_bo_munmap(struct bo *bo, struct vma *vma);
34 int drv_mapping_destroy(struct bo *bo);
35 int drv_get_prot(uint32_t map_flags);
36 uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane);
37 void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane);
38 void drv_decrement_reference_count(struct driver *drv, struct bo *bo, size_t plane);
39 void drv_add_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
40                          uint64_t usage);
41 void drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats,
42                           struct format_metadata *metadata, uint64_t usage);
43 void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
44                             uint64_t usage);
45 int drv_modify_linear_combinations(struct driver *drv);
46 uint64_t drv_pick_modifier(const uint64_t *modifiers, uint32_t count,
47                            const uint64_t *modifier_order, uint32_t order_count);
48 bool drv_has_modifier(const uint64_t *list, uint32_t count, uint64_t modifier);
49 uint32_t drv_get_standard_fourcc(uint32_t fourcc_internal);
50
51 #ifdef __cplusplus
52 }
53 #endif
54
55 #endif