From f58dfd06227582f479e6b421139f1f7cd397103d Mon Sep 17 00:00:00 2001 From: Marek Szyprowski Date: Tue, 11 Jun 2024 09:30:35 +0200 Subject: [PATCH] correct tbm_bufmgr_internal_alloc_bo_with_format() prototype Signed-off-by: Marek Szyprowski Change-Id: I7fba8c0bbf6a146d82a0f878a4acb9c4aff473f8 --- src/tbm_bufmgr_int.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.34.1