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