From: Marek Szyprowski Date: Tue, 11 Jun 2024 07:30:35 +0000 (+0200) Subject: correct tbm_bufmgr_internal_alloc_bo_with_format() prototype X-Git-Tag: accepted/tizen/unified/20240911.104725~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F29%2F312529%2F2;p=platform%2Fcore%2Fuifw%2Flibtbm.git correct tbm_bufmgr_internal_alloc_bo_with_format() prototype Signed-off-by: Marek Szyprowski Change-Id: I7fba8c0bbf6a146d82a0f878a4acb9c4aff473f8 --- diff --git a/src/tbm_bufmgr_int.h b/src/tbm_bufmgr_int.h index bbb27bb..f8e79f7 100644 --- a/src/tbm_bufmgr_int.h +++ b/src/tbm_bufmgr_int.h @@ -313,7 +313,7 @@ void _tbm_bufmgr_mutex_unlock(void); tbm_bo tbm_bufmgr_internal_find_bo(tbm_bufmgr bufmgr, tbm_bo bo); tbm_bo tbm_bufmgr_internal_alloc_bo(tbm_bufmgr bufmgr, int size, int flags); -tbm_bo tbm_bufmgr_internal_alloc_bo_with_format(tbm_bufmgr bufmgr, int format, int bo_idx, int width, int bpp, int height, tbm_bo_memory_type flags, tbm_error_e *error); +tbm_bo tbm_bufmgr_internal_alloc_bo_with_format(tbm_bufmgr bufmgr, int format, int bo_idx, int width, int height, int bpp, tbm_bo_memory_type flags, tbm_error_e *error); tbm_bo tbm_bufmgr_internal_alloc_bo_with_bo_data(tbm_bufmgr bufmgr, tbm_bo_data *bo_data, int flags, tbm_error_e *error); tbm_bo tbm_bufmgr_internal_import_bo_with_key(tbm_bufmgr bufmgr, tbm_key key); tbm_bo tbm_bufmgr_internal_import_bo_with_fd(tbm_bufmgr bufmgr, tbm_fd fd);