tbm_module: TBM_MODULE_TYPE_BUFMGR_BACKEND is deprecated after Tizen 6.5 92/259892/1
authorSooChan Lim <sc1.lim@samsung.com>
Tue, 15 Jun 2021 05:20:36 +0000 (14:20 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Tue, 15 Jun 2021 12:03:10 +0000 (21:03 +0900)
Change-Id: I84d24e9b3de06de9f72cf1f85a3e40354b64d435

src/tbm_module.c

index 2da8152..ba9c836 100644 (file)
@@ -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;