summaryrefslogtreecommitdiff
path: root/hw/display_internal.h
diff options
context:
space:
mode:
authorlokilee73 <changjoo.lee@samsung.com>2019-01-28 20:01:38 +0900
committerlokilee73 <changjoo.lee@samsung.com>2019-01-29 14:32:36 +0900
commit2c328fac949e3e99fed4e9396d5f65d7b1ee5916 (patch)
treeace9d5fc0ae5590ae09f3bea8b96dfaa5b185b0b /hw/display_internal.h
parentf3e15a75312c01c9e56bec38766ab479f187f279 (diff)
downloadlibdevice-node-2c328fac949e3e99fed4e9396d5f65d7b1ee5916.tar.gz
libdevice-node-2c328fac949e3e99fed4e9396d5f65d7b1ee5916.tar.bz2
libdevice-node-2c328fac949e3e99fed4e9396d5f65d7b1ee5916.zip
OAL(OEM Adaptation Layer) still exists in libdevice-node, even though HAL was implemented. Change-Id: I675272ff3543d0a213e002d00726104b2bccd1fe Signed-off-by: lokilee73 <changjoo.lee@samsung.com>
Diffstat (limited to 'hw/display_internal.h')
-rw-r--r--hw/display_internal.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/hw/display_internal.h b/hw/display_internal.h
index 125f0d9..ea66be9 100644
--- a/hw/display_internal.h
+++ b/hw/display_internal.h
@@ -36,44 +36,4 @@
*/
#define DISPLAY_INTERNAL_HARDWARE_DEVICE_VERSION MAKE_VERSION(0,2)
-typedef enum display_internal_enhance_mode {
- ENHANCE_MODE_NONE = 1001,
- ENHANCE_MODE_DYNAMIC,
- ENHANCE_MODE_STANDARD,
- ENHANCE_MODE_NATURAL,
- ENHANCE_MODE_GRAYSCALE,
- ENHANCE_MODE_MOVIE,
- ENHANCE_MODE_AUTO,
-} display_internal_enhance_mode_e;
-
-typedef enum display_internal_enhance_scenario {
- ENHANCE_SCENARIO_NONE = 2001,
- ENHANCE_SCENARIO_NORMAL,
- ENHANCE_SCENARIO_GALLERY,
- ENHANCE_SCENARIO_VIDEO,
- ENHANCE_SCENARIO_VTCALL,
- ENHANCE_SCENARIO_CAMERA,
- ENHANCE_SCENARIO_BROWSER,
- ENHANCE_SCENARIO_NEGATIVE,
- ENHANCE_SCENARIO_EMAIL,
- ENHANCE_SCENARIO_EBOOK,
- ENHANCE_SCENARIO_GRAYSCALE,
-} display_intermal_enhance_scenario_e;
-
-struct display_internal_device {
- struct hw_common common;
-
- int (*set_enhance_mode)(display_internal_enhance_mode_e mode);
- int (*get_enhance_mode)(display_internal_enhance_mode_e *mode);
-
- int (*set_enhance_scenario)(display_internal_enhance_scenario_e scenario);
- int (*get_enhance_scenario)(display_internal_enhance_scenario_e *scenario);
-
- int (*set_enhance)(display_internal_enhance_mode_e mode,
- display_internal_enhance_scenario_e scenario);
- int (*get_enhance)(display_internal_enhance_mode_e *mode,
- display_internal_enhance_scenario_e *scenario);
-
-};
-
#endif