blob: ecb49f354b5966f1ed969e37cf7254063d1823d9 [file] [log] [blame]
Stéphane Marchesin25a26062014-09-12 16:18:59 -07001/*
2 * Copyright (c) 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
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070010#include "drv.h"
11
12size_t drv_num_planes_from_format(uint32_t format);
13int drv_bpp_from_format(uint32_t format);
14int drv_stride_from_format(uint32_t format, uint32_t width);
15int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height,
Stéphane Marchesinec88e892015-11-03 16:14:59 -080016 uint32_t format, uint32_t flags);
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070017int drv_dumb_bo_destroy(struct bo *bo);
18int drv_gem_bo_destroy(struct bo *bo);
Stéphane Marchesin25a26062014-09-12 16:18:59 -070019
20#endif