From add942797e551eb67431980d8e95bb431c279d28 Mon Sep 17 00:00:00 2001 From: Yunhee Seo Date: Thu, 24 Nov 2022 13:47:59 +0900 Subject: [PATCH] display: display_white_balance_e enum struct definition relocation display_white_balance_e is enumeration for setting and getting white_balance RGB gain/offset value. This enum struct moved from display-enum.h to display-internal.h This is because this structure definition is for the white balancing function by Tizen_DA, not public. Change-Id: I1f9ef05e8023f15521f3585fe36f4bc1fea578ca Signed-off-by: Yunhee Seo --- include/display-enum.h | 15 --------------- include/display-internal.h | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/include/display-enum.h b/include/display-enum.h index c1decbc..ce92211 100644 --- a/include/display-enum.h +++ b/include/display-enum.h @@ -21,21 +21,6 @@ typedef enum DISPLAY_STATE_SCREEN_OFF, /**< Screen off state */ } display_state_e; -/** - * @brief Enumeration for the adjustment display white balance. - * @since_tizen 7.0 - */ - -typedef enum -{ - DISPLAY_WHITE_BALANCE_R_GAIN = 0, /** White balance R Gain */ - DISPLAY_WHITE_BALANCE_G_GAIN, /** White balance G Gain */ - DISPLAY_WHITE_BALANCE_B_GAIN, /** White balance B Gain */ - DISPLAY_WHITE_BALANCE_R_OFFSET, /** White balance R Offset */ - DISPLAY_WHITE_BALANCE_G_OFFSET, /** White balance G Offset */ - DISPLAY_WHITE_BALANCE_B_OFFSET, /** White balance B Offset */ -} display_white_balance_e; - #ifdef __cplusplus } #endif diff --git a/include/display-internal.h b/include/display-internal.h index d214553..3bc1aee 100644 --- a/include/display-internal.h +++ b/include/display-internal.h @@ -30,6 +30,21 @@ extern "C" { #endif /** + * @brief Enumeration for the adjustment display white balance. + * @since_tizen 7.0 + */ + +typedef enum +{ + DISPLAY_WHITE_BALANCE_R_GAIN = 0, /**< White balance R Gain */ + DISPLAY_WHITE_BALANCE_G_GAIN, /**< White balance G Gain */ + DISPLAY_WHITE_BALANCE_B_GAIN, /**< White balance B Gain */ + DISPLAY_WHITE_BALANCE_R_OFFSET, /**< White balance R Offset */ + DISPLAY_WHITE_BALANCE_G_OFFSET, /**< White balance G Offset */ + DISPLAY_WHITE_BALANCE_B_OFFSET, /**< White balance B Offset */ +} display_white_balance_e; + +/** * @brief Gets the display brightness value. * @since_tizen @if MOBILE 5.0 @elseif WEARABLE 5.0 @endif * @privlevel public -- 2.7.4