From: SooChan Lim Date: Thu, 7 Mar 2019 05:05:44 +0000 (+0900) Subject: add TBM_BO_TILED flags X-Git-Tag: submit/tizen/20190322.045511~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F03%2F201003%2F3;p=platform%2Fcore%2Fuifw%2Flibtbm.git add TBM_BO_TILED flags This flags is for creating the bo and surface with tiled memory. Change-Id: I19c78581573f1ea6479febf27169d3fe3de7a716 Signed-off-by: SooChan Lim --- diff --git a/include/tbm_type_common.h b/include/tbm_type_common.h old mode 100644 new mode 100755 index 37f9c22..c77a8e9 --- a/include/tbm_type_common.h +++ b/include/tbm_type_common.h @@ -188,7 +188,8 @@ enum TBM_BO_FLAGS { TBM_BO_SCANOUT = (1 << 0), /**< scanout memory */ TBM_BO_NONCACHABLE = (1 << 1), /**< non-cachable memory */ TBM_BO_WC = (1 << 2), /**< write-combine memory */ - TBM_BO_VENDOR = (0xffff0000), /**< vendor specific memory: it depends on the backend */ + TBM_BO_TILED = (1 << 3), /**< tiled memory */ + TBM_BO_VENDOR = (0xffff0000), /**< vendor specific memory: it depends on the backend */ }; /**