From: Seunghun Lee Date: Thu, 6 Aug 2020 13:13:46 +0000 (+0900) Subject: tdm_common: clarify TDM_TRANSFORM enumaration. X-Git-Tag: submit/tizen/20200901.104418~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e73c676768d938c669efbb0a9feebeb101ed722;p=platform%2Fcore%2Fuifw%2Flibtdm.git tdm_common: clarify TDM_TRANSFORM enumaration. An Enumeration for TDM_TRANSFORM was ambiguous because there wasn't description for direction of rotation. Change-Id: Ie3a9dc5fc3eb3c328a57dd880c31cd9aa2df9951 --- diff --git a/include/tdm_common.h b/include/tdm_common.h index a661a6d9..a3ccede0 100644 --- a/include/tdm_common.h +++ b/include/tdm_common.h @@ -78,13 +78,13 @@ typedef enum { */ typedef enum { TDM_TRANSFORM_NORMAL = 0, /**< no transform */ - TDM_TRANSFORM_90 = 1, /**< rotate 90 */ - TDM_TRANSFORM_180 = 2, /**< rotate 180 */ - TDM_TRANSFORM_270 = 3, /**< rotate 270 */ + TDM_TRANSFORM_90 = 1, /**< rotate 90 degrees clockwise */ + TDM_TRANSFORM_180 = 2, /**< rotate 180 degrees clockwise */ + TDM_TRANSFORM_270 = 3, /**< rotate 270 degrees clockwise */ TDM_TRANSFORM_FLIPPED = 4, /**< no rotate and horizontal flip */ - TDM_TRANSFORM_FLIPPED_90 = 5, /**< rotate 90 and horizontal flip */ - TDM_TRANSFORM_FLIPPED_180 = 6, /**< rotate 180 and horizontal flip */ - TDM_TRANSFORM_FLIPPED_270 = 7, /**< rotate 270 and horizontal flip */ + TDM_TRANSFORM_FLIPPED_90 = 5, /**< rotate 90 degrees clockwise and horizontal flip */ + TDM_TRANSFORM_FLIPPED_180 = 6, /**< rotate 180 degrees clockwise and horizontal flip */ + TDM_TRANSFORM_FLIPPED_270 = 7, /**< rotate 270 degrees clockwise and horizontal flip */ } tdm_transform; /**