change tbm dump API name 85/69385/1 accepted/tizen/common/20160513.123658 accepted/tizen/ivi/20160513.082325 accepted/tizen/mobile/20160513.082306 accepted/tizen/tv/20160513.082319 accepted/tizen/wearable/20160513.082302 submit/tizen/20160513.045353
authorJunkyeong Kim <jk0430.kim@samsung.com>
Fri, 13 May 2016 04:20:42 +0000 (13:20 +0900)
committerJunkyeong Kim <jk0430.kim@samsung.com>
Fri, 13 May 2016 04:20:47 +0000 (13:20 +0900)
Change-Id: I72dcc302dcd97bbffee6e2e49083dcbf165f4aca
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
src/tbm_surface_internal.c [changed mode: 0755->0644]
src/tbm_surface_internal.h

old mode 100755 (executable)
new mode 100644 (file)
index 4626d2f..f1a94b3
@@ -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);
index d6db4b1..fbda74a 100644 (file)
@@ -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.