xref: /linux/drivers/gpu/drm/vkms/vkms_luts.h (revision b61104e7a6349bd2c2b3e2fb3260d87f15eda8f4)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 
3 #ifndef _VKMS_LUTS_H_
4 #define _VKMS_LUTS_H_
5 
6 #define LUT_SIZE 256
7 
8 extern const struct vkms_color_lut linear_eotf;
9 extern const struct vkms_color_lut srgb_eotf;
10 extern const struct vkms_color_lut srgb_inv_eotf;
11 
12 #endif /* _VKMS_LUTS_H_ */
13