1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| /*
| * Copyright 2017 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 CROS_GRALLOC_TYPES_H
| #define CROS_GRALLOC_TYPES_H
|
| struct cros_gralloc_buffer_descriptor {
| uint32_t width;
| uint32_t height;
| uint32_t consumer_usage;
| uint32_t producer_usage;
| uint32_t droid_format;
| uint32_t drm_format;
| uint64_t use_flags;
| };
|
| #endif
|
|