From c15d1ac2d3d1ace0d3c9ba72808e2dad9b8a5135 Mon Sep 17 00:00:00 2001 From: SooChan Lim Date: Tue, 15 Jun 2021 14:20:36 +0900 Subject: [PATCH] tbm_module: TBM_MODULE_TYPE_BUFMGR_BACKEND is deprecated after Tizen 6.5 Change-Id: I84d24e9b3de06de9f72cf1f85a3e40354b64d435 --- src/tbm_module.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.7.4