From cb07f47ffe3d8f550a3405f26079255b7ea32331 Mon Sep 17 00:00:00 2001 From: Changyeon Lee Date: Wed, 4 Dec 2024 12:14:39 +0900 Subject: [PATCH] hal-tdm-types: Add HAL_TDM_OUTPUT_CAPABILITY_NO_HW_VBLANK Change-Id: I84ba1ea158b816cc805f73b521ad9a87aeaccb8b --- include/hal-tdm-types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/hal-tdm-types.h b/include/hal-tdm-types.h index ccd6e8d..d2e65ab 100644 --- a/include/hal-tdm-types.h +++ b/include/hal-tdm-types.h @@ -110,6 +110,7 @@ typedef enum { HAL_TDM_OUTPUT_CAPABILITY_HWC = (1 << 1), /**< if a outupt supports hwc operation @since 2.0.0*/ HAL_TDM_OUTPUT_CAPABILITY_EXTENDED_DPMS = (1 << 2), /**< if a outupt supports extended DPMS operation @since 2.0.0 */ HAL_TDM_OUTPUT_CAPABILITY_MIRROR = (1 << 3), /**< if a outupt supports the displying mirror image of the src_output @since 2.9.0 */ + HAL_TDM_OUTPUT_CAPABILITY_NO_HW_VBLANK = (1 << 4), /**< if a outupt doesn't support hw vblank */ } hal_tdm_output_capability; /** -- 2.34.1