15 lines
480 B
C
Executable File
15 lines
480 B
C
Executable File
// Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
|
|
#ifndef __COMMON_CHROMASITING_H__
|
|
#define __COMMON_CHROMASITING_H__
|
|
|
|
typedef enum vendor_qti_hardware_display_common_ChromaSiting {
|
|
CHROMA_SITING_NONE = 0,
|
|
CHROMA_SITING_UNKNOWN = 1,
|
|
CHROMA_SITING_SITED_INTERSTITIAL = 2,
|
|
CHROMA_SITING_COSITED_HORIZONTAL = 3,
|
|
} vendor_qti_hardware_display_common_ChromaSiting;
|
|
|
|
#endif // __COMMON_CHROMASITING_H__
|