Files
android_kernel_samsung_sm87…/qcom/opensource/display-intf/common/BlendMode.h
2025-08-12 22:13:00 +02:00

16 lines
463 B
C

// Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
// SPDX-License-Identifier: BSD-3-Clause-Clear
#ifndef __COMMON_BLENDMODE_H__
#define __COMMON_BLENDMODE_H__
typedef enum vendor_qti_hardware_display_common_BlendMode {
BLEND_MODE_INVALID = 0,
BLEND_MODE_NONE = 1,
BLEND_MODE_PREMULTIPLIED = 2,
BLEND_MODE_COVERAGE = 3,
BLEND_MODE_MAX = 0xFF,
} vendor_qti_hardware_display_common_BlendMode;
#endif // __COMMON_BLENDMODE_H__