From: Yunhee Seo Date: Thu, 24 Nov 2022 04:47:59 +0000 (+0900) Subject: display: display_white_balance_e enum struct definition relocation X-Git-Tag: accepted/tizen/unified/20221128.165559^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F05%2F284705%2F1;p=platform%2Fcore%2Fapi%2Fdevice.git 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 --- 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 @@ -29,6 +29,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