From 95d735086ad082ea23976214a24832db7f711b7d Mon Sep 17 00:00:00 2001 From: muxiaoximuxiaoxi Date: Tue, 5 Jul 2022 02:13:09 -0700 Subject: [PATCH] fix : add enum CompositionType members Signed-off-by: muxiaoximuxiaoxi --- en/device_api/hdi/display/display_type.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/en/device_api/hdi/display/display_type.h b/en/device_api/hdi/display/display_type.h index 0b88cca1..74b000df 100644 --- a/en/device_api/hdi/display/display_type.h +++ b/en/device_api/hdi/display/display_type.h @@ -460,10 +460,13 @@ typedef enum { * @brief Enumerates the composition types of the special layer. */ typedef enum { - COMPOSITION_CLIENT, /**< Client composition type. The composer should be the CPU or GPU. */ - COMPOSITION_DEVICE, /**< Device composition type. The composer should be the hardware. */ - COMPOSITION_CURSOR, /**< Composition type used for cursor. */ - COMPOSITION_VIDEO, /**< Composition type used for video. */ + COMPOSITION_CLIENT, /**< Composition type, with the client used for the composition. */ + COMPOSITION_DEVICE, /**< Composition type, with the device used for the composition. */ + COMPOSITION_CURSOR, /**< Composition type for the cursor. */ + COMPOSITION_VIDEO, /**< Composition type for the video. */ + COMPOSITION_DEVICE_CLEAR, /**< Composition type for the device to clear the target region. */ + COMPOSITION_CLIENT_CLEAR, /**< Composition type for the client to clear the target region. */ + COMPOSITION_TUNNEL, /**< Composition type for the tunnel. */ COMPOSITION_BUTT } CompositionType; -- Gitee