add TBM_BUFMGR_CAPABILITY_TILED_MEMORY 66/198866/1
authorSooChan Lim <sc1.lim@samsung.com>
Wed, 30 Jan 2019 11:23:31 +0000 (20:23 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Wed, 30 Jan 2019 11:23:31 +0000 (20:23 +0900)
The tbm backend has to set this capability
when it supports the tiled memory.

Change-Id: Ib03d63cca5efed274acd5b1adc6f56d92a78e8d5

include/tbm_type_common.h

index 5a2d82c..37f9c22 100644 (file)
@@ -136,10 +136,11 @@ typedef tbm_error_e tbm_surface_queue_error_e;
  * @since_tizen 2.4
  */
 enum TBM_BUFMGR_CAPABILITY {
-       TBM_BUFMGR_CAPABILITY_NONE = 0,                                 /**< Not Support capability*/
-       TBM_BUFMGR_CAPABILITY_SHARE_KEY = (1 << 0),             /**< Support sharing buffer by tbm key */
-       TBM_BUFMGR_CAPABILITY_SHARE_FD = (1 << 1),              /**< Support sharing buffer by tbm fd */
-       TBM_BUFMGR_CAPABILITY_TBM_SYNC = (1 << 2),              /**< Support tbm sync */
+       TBM_BUFMGR_CAPABILITY_NONE = 0,                  /**< Not Support capability*/
+       TBM_BUFMGR_CAPABILITY_SHARE_KEY = (1 << 0),      /**< Support sharing buffer by tbm key */
+       TBM_BUFMGR_CAPABILITY_SHARE_FD = (1 << 1),       /**< Support sharing buffer by tbm fd */
+       TBM_BUFMGR_CAPABILITY_TBM_SYNC = (1 << 2),       /**< Support tbm sync */
+       TBM_BUFMGR_CAPABILITY_TILED_MEMORY = (1 << 3),   /**< Support tiled memory */
 };
 
 /**