From: Ville Syrjälä Date: Tue, 11 Apr 2023 22:29:26 +0000 (+0300) Subject: drm/uapi: Document CTM matrix better X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=99e7e3b60080d913ff2f94943f4af1f1b76a1c06;p=linux.git drm/uapi: Document CTM matrix better Document in which order the CTM matrix elements are stored. Signed-off-by: Ville Syrjälä Link: https://patchwork.freedesktop.org/patch/msgid/20230411222931.15127-2-ville.syrjala@linux.intel.com Reviewed-by: Xaver Hugl Acked-by: Simon Ser --- diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h index 46becedf5b2fc..43691058d28fb 100644 --- a/include/uapi/drm/drm_mode.h +++ b/include/uapi/drm/drm_mode.h @@ -834,6 +834,11 @@ struct drm_color_ctm { /* * Conversion matrix in S31.32 sign-magnitude * (not two's complement!) format. + * + * out matrix in + * |R| |0 1 2| |R| + * |G| = |3 4 5| x |G| + * |B| |6 7 8| |B| */ __u64 matrix[9]; };