xref: /linux/drivers/gpu/drm/vkms/vkms_luts.h (revision 3f1c07fc21c68bd3bd2df9d2c9441f6485e934d9)
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