Select the types of activity you want to include in your feed.
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 8extern const struct vkms_color_lut linear_eotf; 9extern const struct vkms_color_lut srgb_eotf; 10extern const struct vkms_color_lut srgb_inv_eotf; 11 12#endif /* _VKMS_LUTS_H_ */