diff options
author | Junkyeong Kim <jk0430.kim@samsung.com> | 2016-05-13 13:20:42 +0900 |
---|---|---|
committer | Junkyeong Kim <jk0430.kim@samsung.com> | 2016-05-13 13:20:47 +0900 |
commit | afbfef586e8a3ffd54f43c919cb5651c0d9d27cb (patch) | |
tree | 94639f907b87af4556e6ab7af6c660716149e0f8 | |
parent | db58464ed1d0bd9545a29cd7bdaa37774d59c2b0 (diff) | |
download | libtbm-afbfef586e8a3ffd54f43c919cb5651c0d9d27cb.tar.gz libtbm-afbfef586e8a3ffd54f43c919cb5651c0d9d27cb.tar.bz2 libtbm-afbfef586e8a3ffd54f43c919cb5651c0d9d27cb.zip |
change tbm dump API namesubmit/tizen/20160513.045353accepted/tizen/wearable/20160513.082302accepted/tizen/tv/20160513.082319accepted/tizen/mobile/20160513.082306accepted/tizen/ivi/20160513.082325accepted/tizen/common/20160513.123658
Change-Id: I72dcc302dcd97bbffee6e2e49083dcbf165f4aca
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
-rw-r--r--[-rwxr-xr-x] | src/tbm_surface_internal.c | 2 | ||||
-rw-r--r-- | src/tbm_surface_internal.h | 14 |
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. |