diff options
author | codeworkx <codeworkx@cyanogenmod.org> | 2012-11-23 22:01:55 -0500 |
---|---|---|
committer | chris41g <chriswhite41g@gmail.com> | 2012-11-24 01:25:07 -0500 |
commit | 2b77c3e473c4347e34d2fae9dcf32366fd629b33 (patch) | |
tree | 136e1fe4b7a54455ae227b58f63e085ea31d1640 /include | |
parent | f2108ee9f769c7c43aa42d7ba6e7989d891e3eb5 (diff) | |
download | frameworks_native-2b77c3e473c4347e34d2fae9dcf32366fd629b33.zip frameworks_native-2b77c3e473c4347e34d2fae9dcf32366fd629b33.tar.gz frameworks_native-2b77c3e473c4347e34d2fae9dcf32366fd629b33.tar.bz2 |
exynos4: getphys implementation on buffermanager for samsung omx
Change-Id: Iee665f56aaf601479d796703db983ca5fce9c5c3
Diffstat (limited to 'include')
-rw-r--r-- | include/media/hardware/HardwareAPI.h | 2 | ||||
-rw-r--r-- | include/ui/GraphicBufferMapper.h | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/include/media/hardware/HardwareAPI.h b/include/media/hardware/HardwareAPI.h index cc43bf6..a1bb233 100644 --- a/include/media/hardware/HardwareAPI.h +++ b/include/media/hardware/HardwareAPI.h @@ -18,7 +18,7 @@ #define HARDWARE_API_H_ -#include <OMXPluginBase.h> +#include <media/hardware/OMXPluginBase.h> #include <system/window.h> #include <utils/RefBase.h> diff --git a/include/ui/GraphicBufferMapper.h b/include/ui/GraphicBufferMapper.h index 697a02a..39021f8 100644 --- a/include/ui/GraphicBufferMapper.h +++ b/include/ui/GraphicBufferMapper.h @@ -46,7 +46,11 @@ public: int usage, const Rect& bounds, void** vaddr); status_t unlock(buffer_handle_t handle); - + +#ifdef EXYNOS4210_ENHANCEMENTS + status_t getphys(buffer_handle_t handle, void** paddr); +#endif + // dumps information about the mapping of this handle void dump(buffer_handle_t handle); |