summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gralloc_drm.h10
-rw-r--r--gralloc_drm_handle.h2
2 files changed, 10 insertions, 2 deletions
diff --git a/gralloc_drm.h b/gralloc_drm.h
index e53ecd9..e1a9957 100644
--- a/gralloc_drm.h
+++ b/gralloc_drm.h
@@ -25,7 +25,7 @@
#define _GRALLOC_DRM_H_
#include <hardware/gralloc.h>
-#include <system/graphics.h>
+#include "gralloc_drm_formats.h"
#ifdef __cplusplus
extern "C" {
@@ -37,6 +37,14 @@ extern "C" {
struct gralloc_drm_t;
struct gralloc_drm_bo_t;
+enum {
+ GRALLOC_MODULE_PERFORM_GET_DRM_FD = 0x80000002,
+ GRALLOC_MODULE_PERFORM_GET_DRM_MAGIC = 0x80000003,
+ GRALLOC_MODULE_PERFORM_AUTH_DRM_MAGIC = 0x80000004,
+ GRALLOC_MODULE_PERFORM_ENTER_VT = 0x80000005,
+ GRALLOC_MODULE_PERFORM_LEAVE_VT = 0x80000006,
+};
+
struct gralloc_drm_t *gralloc_drm_create(void);
void gralloc_drm_destroy(struct gralloc_drm_t *drm);
diff --git a/gralloc_drm_handle.h b/gralloc_drm_handle.h
index 201716e..f9cc626 100644
--- a/gralloc_drm_handle.h
+++ b/gralloc_drm_handle.h
@@ -25,7 +25,7 @@
#define _GRALLOC_DRM_HANDLE_H_
#include <cutils/native_handle.h>
-#include <system/graphics.h>
+#include "gralloc_drm_formats.h"
#ifdef __cplusplus
extern "C" {