From f132bbe66f53f8da49fb7b89dd13c2124f0a06c5 Mon Sep 17 00:00:00 2001 From: m00472246 Date: Mon, 17 Mar 2025 20:12:42 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B5=84=E6=96=99=E5=92=8Csdk=E4=BF=9D?= =?UTF-8?q?=E6=8C=81=E4=B8=80=E8=87=B4=20Signed-off-by:=20m00472246=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: m00472246 --- graphic/graphic_2d/native_buffer/native_buffer.h | 4 ++-- graphic/graphic_2d/native_window/external_window.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/graphic/graphic_2d/native_buffer/native_buffer.h b/graphic/graphic_2d/native_buffer/native_buffer.h index 70d47a631f..46cdbcd6d6 100644 --- a/graphic/graphic_2d/native_buffer/native_buffer.h +++ b/graphic/graphic_2d/native_buffer/native_buffer.h @@ -462,7 +462,7 @@ int32_t OH_NativeBuffer_GetColorSpace(OH_NativeBuffer *buffer, OH_NativeBuffer_C * @version 1.0 */ int32_t OH_NativeBuffer_SetMetadataValue(OH_NativeBuffer *buffer, OH_NativeBuffer_MetadataKey metadataKey, - int32_t size, uint8_t *metadata); + int32_t size, uint8_t *metaData); /** * @brief Set the metadata type of the OH_NativeBuffer.\n @@ -481,7 +481,7 @@ int32_t OH_NativeBuffer_SetMetadataValue(OH_NativeBuffer *buffer, OH_NativeBuffe * @version 1.0 */ int32_t OH_NativeBuffer_GetMetadataValue(OH_NativeBuffer *buffer, OH_NativeBuffer_MetadataKey metadataKey, - int32_t *size, uint8_t **metadata); + int32_t *size, uint8_t **metaData); #ifdef __cplusplus } diff --git a/graphic/graphic_2d/native_window/external_window.h b/graphic/graphic_2d/native_window/external_window.h index 41b01ce8d0..bb7019cead 100644 --- a/graphic/graphic_2d/native_window/external_window.h +++ b/graphic/graphic_2d/native_window/external_window.h @@ -848,7 +848,7 @@ int32_t OH_NativeWindow_GetColorSpace(OHNativeWindow *window, OH_NativeBuffer_Co * @version 1.0 */ int32_t OH_NativeWindow_SetMetadataValue(OHNativeWindow *window, OH_NativeBuffer_MetadataKey metadataKey, - int32_t size, uint8_t *metadata); + int32_t size, uint8_t *metaData); /** * @brief Set the metadata type of the native window.\n @@ -867,7 +867,7 @@ int32_t OH_NativeWindow_SetMetadataValue(OHNativeWindow *window, OH_NativeBuffer * @version 1.0 */ int32_t OH_NativeWindow_GetMetadataValue(OHNativeWindow *window, OH_NativeBuffer_MetadataKey metadataKey, - int32_t *size, uint8_t **metadata); + int32_t *size, uint8_t **metaData); /** * @brief Clean all OHNativeWindowBuffer caches of this OHNativeWindow -- Gitee