fix typo
[platform/core/uifw/libtbm.git] / include / tbm_type_common.h
old mode 100644 (file)
new mode 100755 (executable)
index 8f43737..068d19b
@@ -126,6 +126,7 @@ typedef enum {
        TBM_SURFACE_QUEUE_ERROR_ALREADY_EXIST = TBM_ERROR_BASE | 0x0305,              /**< Already existed surface */
        TBM_SURFACE_QUEUE_ERROR_UNKNOWN_SURFACE = TBM_ERROR_BASE | 0x0306,            /**< Unknown surface */
        TBM_SURFACE_QUEUE_ERROR_INVALID_SEQUENCE = TBM_ERROR_BASE | 0x0307,       /**< Invalid sequence */
+       TBM_SURFACE_QUEUE_ERROR_TIMEOUT = TBM_ERROR_BASE | 0x0308,                /**< Timeout */
 } tbm_error_e;
 
 typedef tbm_error_e tbm_surface_queue_error_e;
@@ -135,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 timeline sync */
+       TBM_BUFMGR_CAPABILITY_TILED_MEMORY = (1 << 3),   /**< Support tiled memory */
 };
 
 /**
@@ -186,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 */
 };
 
 /**