OSDN Git Service

Fix insignificant warnings
[android-x86/external-drm_gralloc.git] / gralloc_drm_handle.h
1 /*
2  * Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
3  * Copyright (C) 2010-2011 LunarG Inc.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included
13  * in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  */
23
24 #ifndef _GRALLOC_DRM_HANDLE_H_
25 #define _GRALLOC_DRM_HANDLE_H_
26
27 #include <cutils/native_handle.h>
28 #include "gralloc_drm_formats.h"
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 struct gralloc_drm_bo_t;
35
36 struct gralloc_drm_handle_t {
37         native_handle_t base;
38
39         /* file descriptors */
40         int prime_fd;
41
42         int magic;
43
44         int width;
45         int height;
46         int format;
47         int usage;
48
49         unsigned int plane_mask; /* planes that support handle */
50
51         int name;   /* the name of the bo */
52         int stride; /* the stride in bytes */
53
54         int data_owner; /* owner of data (for validation) */
55         union {
56                 struct gralloc_drm_bo_t *data; /* pointer to struct gralloc_drm_bo_t */
57                 int64_t __padding;
58         } __attribute__((aligned(8)));
59 };
60
61 #define GRALLOC_DRM_HANDLE_MAGIC 0x12345678
62 #define GRALLOC_DRM_HANDLE_NUM_FDS 0
63 #define GRALLOC_DRM_HANDLE_NUM_INTS (                                           \
64         ((sizeof(struct gralloc_drm_handle_t) - sizeof(native_handle_t))/sizeof(int))   \
65          - GRALLOC_DRM_HANDLE_NUM_FDS)
66
67 static inline struct gralloc_drm_handle_t *gralloc_drm_handle(buffer_handle_t _handle)
68 {
69         struct gralloc_drm_handle_t *handle =
70                 (struct gralloc_drm_handle_t *) _handle;
71
72         if (handle && (handle->base.version != sizeof(handle->base) ||
73                        handle->base.numInts != GRALLOC_DRM_HANDLE_NUM_INTS ||
74                        handle->base.numFds != GRALLOC_DRM_HANDLE_NUM_FDS ||
75                        handle->magic != GRALLOC_DRM_HANDLE_MAGIC))
76                 handle = NULL;
77
78         return handle;
79 }
80
81 #ifdef __cplusplus
82 }
83 #endif
84 #endif /* _GRALLOC_DRM_HANDLE_H_ */