summaryrefslogtreecommitdiff
path: root/chromium/third_party/minigbm/src/helpers.h
blob: 64e8489e3917b6b47e9a58f1ebec995631f711c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * 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.
 */

#ifndef HELPERS_H
#define HELPERS_H

#include "drv.h"

int drv_bpp_from_format(uint32_t format, size_t plane);
int drv_bo_from_format(struct bo *bo, uint32_t width, uint32_t height,
		       uint32_t format);
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);
void drv_increment_reference_count(struct driver *drv, struct bo *bo,
				   size_t plane);
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);
void drv_modify_supported_combination(struct driver *drv, uint32_t format,
			              uint64_t usage, uint64_t modifier);
int drv_add_kms_flags(struct driver *drv);
#endif