From afbfef586e8a3ffd54f43c919cb5651c0d9d27cb Mon Sep 17 00:00:00 2001 From: Junkyeong Kim Date: Fri, 13 May 2016 13:20:42 +0900 Subject: [PATCH] change tbm dump API name Change-Id: I72dcc302dcd97bbffee6e2e49083dcbf165f4aca Signed-off-by: Junkyeong Kim --- src/tbm_surface_internal.c | 2 +- src/tbm_surface_internal.h | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) mode change 100755 => 100644 src/tbm_surface_internal.c diff --git a/src/tbm_surface_internal.c b/src/tbm_surface_internal.c old mode 100755 new mode 100644 index 4626d2f..f1a94b3 --- a/src/tbm_surface_internal.c +++ b/src/tbm_surface_internal.c @@ -1439,7 +1439,7 @@ tbm_surface_internal_dump_end(void) } void -tbm_internal_surface_dump_buffer(tbm_surface_h surface, const char *type) +tbm_surface_internal_dump_buffer(tbm_surface_h surface, const char *type) { TBM_RETURN_IF_FAIL(surface != NULL); TBM_RETURN_IF_FAIL(type != NULL); diff --git a/src/tbm_surface_internal.h b/src/tbm_surface_internal.h index d6db4b1..fbda74a 100644 --- a/src/tbm_surface_internal.h +++ b/src/tbm_surface_internal.h @@ -400,10 +400,10 @@ int tbm_surface_internal_delete_user_data(tbm_surface_h surface, /** * @brief Start the dump debugging. * @since_tizen 3.0 - * @param[in] path The given dump path - * @param[in] w The width of dump image - * @param[in] h The height of dump image - * @param[in] count The dump count number + * @param[in] path : the given dump path + * @param[in] w : the width of dump image + * @param[in] h : the height of dump image + * @param[in] count : the dump count number * @see #tdm_helper_dump_stop() */ void tbm_surface_internal_dump_start(char *path, int w, int h, int count); @@ -429,10 +429,10 @@ void tbm_surface_internal_dump_end(void); * - TBM_FORMAT_UYVY * The filename extension should be "png" for TBM_FORMAT_ARGB8888 and TBM_FORMAT_XRGB8888 * or "yuv" for YUV formats. - * @param[in] surface a tbm surface - * @param[in] type a string used by a file name. + * @param[in] surface : a tbm surface + * @param[in] type : a string used by a file name. */ -void tbm_internal_surface_dump_buffer(tbm_surface_h surface, const char *type); +void tbm_surface_internal_dump_buffer(tbm_surface_h surface, const char *type); /** * @brief check valid tbm surface. -- 2.7.4