tdm_common: add no transform pp capability 45/236645/2
authorJunkyeong Kim <jk0430.kim@samsung.com>
Fri, 19 Jun 2020 04:29:58 +0000 (13:29 +0900)
committerJunkyeong Kim <jk0430.kim@samsung.com>
Mon, 22 Jun 2020 04:35:12 +0000 (13:35 +0900)
Change-Id: Iec0145551cd100f27aea256270c237fd6fcd5732
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
include/tdm_common.h

index bfb4cc6..eb856a7 100644 (file)
@@ -145,10 +145,11 @@ typedef enum {
  * what a backend doesn't support like TDM_PP_CAPABILITY_NO_CSC.
  */
 typedef enum {
-       TDM_PP_CAPABILITY_SYNC           = (1 << 0), /**< The pp device supports synchronous operation */
-       TDM_PP_CAPABILITY_ASYNC          = (1 << 1), /**< The pp device supports asynchronous operation */
-       TDM_PP_CAPABILITY_SCANOUT        = (1 << 4), /**< The pp device supports only scanout buffer */
-       TDM_PP_CAPABILITY_NO_CSC         = (1 << 5), /**< The pp device doesn't supports Color Space Conversion */
+       TDM_PP_CAPABILITY_SYNC                  = (1 << 0), /**< The pp device supports synchronous operation */
+       TDM_PP_CAPABILITY_ASYNC                 = (1 << 1), /**< The pp device supports asynchronous operation */
+       TDM_PP_CAPABILITY_SCANOUT               = (1 << 4), /**< The pp device supports only scanout buffer */
+       TDM_PP_CAPABILITY_NO_CSC                = (1 << 5), /**< The pp device doesn't support Color Space Conversion */
+       TDM_PP_CAPABILITY_NO_TRANSFORM_ROTATION = (1 << 6), /**< The pp device doesn't support rotation transform */
 } tdm_pp_capability;
 
 /**