blob: b8d0622db05d1f4bcda86c426f0f78369c50e7d1 [file] [log] [blame]
Tapani Pälli45a94512012-12-14 10:43:39 +02001/*
2 * Copyright (C) 2012 Intel Corporation. All rights reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 * Android graphics.h defines the formats and leaves 0x100 - 0x1FF
19 * range available for HAL implementation specific formats.
20 */
21
22#ifndef GRALLOC_DRM_FORMATS_H
23#define GRALLOC_DRM_FORMATS_H
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29enum {
30
31 HAL_PIXEL_FORMAT_DRM_NV12 = 0x102,
32};
33
34#ifdef __cplusplus
35}
36#endif
37
38#endif
39