From ee33b04943c9bed89276207a066ca1fbb6105606 Mon Sep 17 00:00:00 2001 From: SooChan Lim Date: Thu, 7 Mar 2019 14:05:44 +0900 Subject: [PATCH] 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 --- include/tbm_type_common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 include/tbm_type_common.h 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 */ }; /** -- 2.7.4