From 85de7e2c5aee819eaa922c2efd3d38fffcb24d9f Mon Sep 17 00:00:00 2001 From: Boram Park Date: Mon, 19 Mar 2018 14:10:22 +0900 Subject: [PATCH 1/1] pp: remove unuseful pp capabilities scale and transform seems as the default pp capabilities. Change-Id: I68eff0222105f1e255210ea1ebe58a22599af32a --- include/tdm_common.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/tdm_common.h b/include/tdm_common.h index f847a77..e97170b 100644 --- a/include/tdm_common.h +++ b/include/tdm_common.h @@ -152,10 +152,8 @@ typedef enum { 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_SCALE = (1 << 4), /**< The pp device supports scale operation */ - TDM_PP_CAPABILITY_TRANSFORM = (1 << 5), /**< The pp device supports transform operation */ - TDM_PP_CAPABILITY_SCANOUT = (1 << 6), /**< The pp device supports only scanout buffer */ - TDM_PP_CAPABILITY_NO_CSC = (1 << 7), /**< The pp device doesnt supports Color Space Conversion */ + 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; /** -- 2.7.4