summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunkyeong Kim <jk0430.kim@samsung.com>2016-05-13 13:20:42 +0900
committerJunkyeong Kim <jk0430.kim@samsung.com>2016-05-13 13:20:47 +0900
commitafbfef586e8a3ffd54f43c919cb5651c0d9d27cb (patch)
tree94639f907b87af4556e6ab7af6c660716149e0f8
parentdb58464ed1d0bd9545a29cd7bdaa37774d59c2b0 (diff)
downloadlibtbm-afbfef586e8a3ffd54f43c919cb5651c0d9d27cb.tar.gz
libtbm-afbfef586e8a3ffd54f43c919cb5651c0d9d27cb.tar.bz2
libtbm-afbfef586e8a3ffd54f43c919cb5651c0d9d27cb.zip
Change-Id: I72dcc302dcd97bbffee6e2e49083dcbf165f4aca Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
-rw-r--r--[-rwxr-xr-x]src/tbm_surface_internal.c2
-rw-r--r--src/tbm_surface_internal.h14
2 files changed, 8 insertions, 8 deletions
diff --git a/src/tbm_surface_internal.c b/src/tbm_surface_internal.c
index 4626d2f..f1a94b3 100755..100644
--- 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.