From fc9c0261746cd6924f117b1e2bb25659af11c1fc Mon Sep 17 00:00:00 2001 From: sunghyun kim Date: Mon, 20 May 2024 15:15:05 +0900 Subject: [PATCH] Add FittingMode for visual fittingMode Add new type for visual fittingMode Change-Id: I17cb51564117a1c0426052dac547d0beb944e1c2 --- dali/public-api/images/image-operations.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dali/public-api/images/image-operations.h b/dali/public-api/images/image-operations.h index 353dc42..8642976 100644 --- a/dali/public-api/images/image-operations.h +++ b/dali/public-api/images/image-operations.h @@ -67,9 +67,12 @@ enum Type FIT_WIDTH, ///< Image fills whole width. Height is scaled proportionately to /// maintain aspect ratio. /// @SINCE_1_0.0 - FIT_HEIGHT ///< Image fills whole height. Width is scaled proportionately to + FIT_HEIGHT, ///< Image fills whole height. Width is scaled proportionately to /// maintain aspect ratio. /// @SINCE_1_0.0 + VISUAL_FITTING /// < Image is scaled to fit within the desired dimensions. + /// maintain aspect ratio. + /// @SINCE_2_3.24 }; const Type DEFAULT = SHRINK_TO_FIT; } // namespace FittingMode -- 2.7.4