OSDN Git Service

minigbm: add bytes per pixel function
[android-x86/external-minigbm.git] / gma500.c
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 #include "drv_priv.h"
8 #include "helpers.h"
9 #include "util.h"
10
11 static const uint32_t supported_formats[] = {
12         DRM_FORMAT_RGBX8888
13 };
14
15 static int gma500_init(struct driver *drv)
16 {
17         return drv_add_linear_combinations(drv, supported_formats,
18                                            ARRAY_SIZE(supported_formats));
19 }
20
21 struct backend backend_gma500 =
22 {
23         .name = "gma500",
24         .init = gma500_init,
25         .bo_create = drv_dumb_bo_create,
26         .bo_destroy = drv_dumb_bo_destroy,
27         .bo_import = drv_prime_bo_import,
28         .bo_map = drv_dumb_bo_map,
29 };