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