[PATCH v4 02/10] lib/igt_kms: Add IGT_COLOROP_FIXED_MATRIX property
Harry Wentland <[email protected]> Fri, 31 Jul 2026 14:01:52 -0400
| Newsgroups | org.freedesktop.lists.igt-dev |
|---|---|
| Message-ID | <[email protected]> |
Add support for the Fixed Matrix colorop property: - Add IGT_COLOROP_FIXED_MATRIX property to the colorop property enum and names array in igt_kms Assisted-by: Claude:claude-opus-4-6 Signed-off-by: Harry Wentland <[email protected]> Reviewed-by: Alex Hung <[email protected]> --- lib/igt_kms.c | 1 + lib/igt_kms.h | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index ef9496741ab5..0f1704d18803 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -725,6 +725,7 @@ const char * const igt_colorop_prop_names[IGT_NUM_COLOROP_PROPS] = { [IGT_COLOROP_MULTIPLIER] = "MULTIPLIER", [IGT_COLOROP_LUT3D_INTERPOLATION] = "LUT3D_INTERPOLATION", [IGT_COLOROP_NEXT] = "NEXT", + [IGT_COLOROP_FIXED_MATRIX] = "FIXED_MATRIX_TYPE", }; const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 521a03c01d72..27f8877a9f6a 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -363,6 +363,7 @@ enum igt_atomic_colorop_properties { IGT_COLOROP_MULTIPLIER, IGT_COLOROP_LUT3D_INTERPOLATION, IGT_COLOROP_NEXT, + IGT_COLOROP_FIXED_MATRIX, IGT_NUM_COLOROP_PROPS }; -- 2.55.0