OSDN Git Service

minigbm: add support for HAL_PIXEL_FORMAT_RGBA_FP16
[android-x86/external-minigbm.git] / cros_gralloc / cros_gralloc_helpers.h
1 /*
2  * Copyright 2016 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 CROS_GRALLOC_HELPERS_H
8 #define CROS_GRALLOC_HELPERS_H
9
10 #include "../drv.h"
11 #include "cros_gralloc_handle.h"
12 #include "cros_gralloc_types.h"
13
14 #include <system/graphics.h>
15 #include <system/window.h>
16
17 #if ANDROID_VERSION < 0x0900
18 #define HAL_PIXEL_FORMAT_RGBA_FP16 0x16
19 #endif
20
21 constexpr uint32_t cros_gralloc_magic = 0xABCDDCBA;
22 constexpr uint32_t handle_data_size =
23     ((sizeof(struct cros_gralloc_handle) - offsetof(cros_gralloc_handle, fds[0])) / sizeof(int));
24
25 uint32_t cros_gralloc_convert_format(int32_t format);
26
27 cros_gralloc_handle_t cros_gralloc_convert_handle(buffer_handle_t handle);
28
29 int32_t cros_gralloc_sync_wait(int32_t acquire_fence);
30
31 #endif