mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
17 lines
302 B
C
17 lines
302 B
C
/*
|
|
* Copyright (c) 2024, ArtInChip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _DISP_CCM_H_
|
|
#define _DISP_CCM_H_
|
|
|
|
static int ccm_lut[12] = {
|
|
0x0100, 0x0000, 0x0000, 0x0000,
|
|
0x0000, 0x0100, 0x0000, 0x0000,
|
|
0x0000, 0x0000, 0x0100, 0x0000,
|
|
};
|
|
|
|
#endif /* _DISP_CCM_H_ */
|