From: SooChan Lim Date: Tue, 15 Jun 2021 05:20:36 +0000 (+0900) Subject: tbm_module: TBM_MODULE_TYPE_BUFMGR_BACKEND is deprecated after Tizen 6.5 X-Git-Tag: submit/tizen/20210617.053259~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F92%2F259892%2F1;p=platform%2Fcore%2Fuifw%2Flibtbm.git tbm_module: TBM_MODULE_TYPE_BUFMGR_BACKEND is deprecated after Tizen 6.5 Change-Id: I84d24e9b3de06de9f72cf1f85a3e40354b64d435 --- diff --git a/src/tbm_module.c b/src/tbm_module.c index 2da8152..ba9c836 100644 --- a/src/tbm_module.c +++ b/src/tbm_module.c @@ -533,7 +533,7 @@ tbm_module_bufmgr_bind_native_display(tbm_module *module, void *native_display) error = bufmgr_func->bufmgr_bind_native_display(module->bufmgr_data, (tbm_native_display *)native_display); break; case TBM_MODULE_TYPE_BUFMGR_BACKEND: - TBM_WRN("!!WARNING: This backend interface will be DEPRECATED after Tizen 7.0."); + TBM_WRN("!!WARNING: This backend interface will be DEPRECATED after Tizen 6.5."); backend = module->backend; TBM_RETURN_VAL_IF_FAIL(backend, TBM_ERROR_INVALID_OPERATION); TBM_RETURN_VAL_IF_FAIL(backend->bufmgr_bind_native_display, TBM_ERROR_NOT_SUPPORTED); @@ -573,7 +573,7 @@ tbm_module_bufmgr_bo_alloc(tbm_module *module, tbm_bo bo, int size, int flags, t bo_data = module->bufmgr_func->bufmgr_alloc_bo(module->bufmgr_data, (unsigned int)size, flags, error); break; case TBM_MODULE_TYPE_BUFMGR_BACKEND: - TBM_WRN("!!WARNING: This backend interface will be DEPRECATED after Tizen 7.0."); + TBM_WRN("!!WARNING: This backend interface will be DEPRECATED after Tizen 6.5."); backend = module->backend; TBM_RETURN_VAL_SET_ERR_IF_FAIL(backend, NULL, *error, TBM_ERROR_INVALID_OPERATION); TBM_RETURN_VAL_SET_ERR_IF_FAIL(backend->bo_alloc, NULL, *error, TBM_ERROR_NOT_SUPPORTED); @@ -613,7 +613,7 @@ tbm_module_bufmgr_bo_alloc_with_format(tbm_module *module, int format, int bo_id bo_data = bufmgr_func->bufmgr_alloc_bo_with_format(module->bufmgr_data, format, bo_idx, width, height, flags, error); break; case TBM_MODULE_TYPE_BUFMGR_BACKEND: - TBM_WRN("!!WARNING: This backend interface will be DEPRECATED after Tizen 7.0."); + TBM_WRN("!!WARNING: This backend interface will be DEPRECATED after Tizen 6.5."); TBM_ERR("error: not supported tbm_bo_alloc_with_format."); *error = TBM_ERROR_NOT_SUPPORTED;