diff options
author | Sean V Kelley <sean.v.kelley@intel.com> | 2013-05-01 15:02:39 -0700 |
---|---|---|
committer | Sean V Kelley <sean.v.kelley@intel.com> | 2013-05-01 15:09:03 -0700 |
commit | 3e00d3255ba6de08761a6b8f40b838680d502d0b (patch) | |
tree | 385ff3bcc183f98751367524ca9cacf3130a6beb | |
parent | b201e98a1cbdf217e52da2cf503beb3b21c2e173 (diff) | |
download | external_drm_gralloc-3e00d3255ba6de08761a6b8f40b838680d502d0b.zip external_drm_gralloc-3e00d3255ba6de08761a6b8f40b838680d502d0b.tar.gz external_drm_gralloc-3e00d3255ba6de08761a6b8f40b838680d502d0b.tar.bz2 |
gralloc: Remove localized hw specific pixel format
Reduces need to build with drm_gralloc headers elsewhere in tree.
Returning to system/graphics.h approach.
Change-Id: I26717cfe0a9a83ab263c26803e2849eb55560696
Depends-Change-Id: I405398b172fab19949fef33c89a60132b1bd0ea9
Signed-off-by: Sean V Kelley <sean.v.kelley@intel.com>
-rw-r--r-- | gralloc_drm.h | 2 | ||||
-rw-r--r-- | gralloc_drm_handle.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gralloc_drm.h b/gralloc_drm.h index 8554cf7..dcc6a66 100644 --- a/gralloc_drm.h +++ b/gralloc_drm.h @@ -25,7 +25,7 @@ #define _GRALLOC_DRM_H_ #include <hardware/gralloc.h> -#include "gralloc_drm_formats.h" +#include <system/graphics.h> #ifdef __cplusplus extern "C" { diff --git a/gralloc_drm_handle.h b/gralloc_drm_handle.h index 7d431e4..f7b03b2 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 "gralloc_drm_formats.h" +#include <system/graphics.h> #ifdef __cplusplus extern "C" { |