Re: [Intel-gfx] [PATCH 02/12] drm/i915: Introduce intel_csc_matrix struct

2023-04-10 Thread Nautiyal, Ankit K
On 4/11/2023 10:37 AM, Ville Syrjälä wrote: @@ -294,13 +293,20 @@ static bool ilk_csc_limited_range(const struct intel_crtc_state *crtc_state) } static void ilk_csc_convert_ctm(const struct intel_crtc_state *crtc_state, - u16 coeffs[9], bool limited_col

Re: [Intel-gfx] [PATCH 02/12] drm/i915: Introduce intel_csc_matrix struct

2023-04-10 Thread Ville Syrjälä
> > @@ -294,13 +293,20 @@ static bool ilk_csc_limited_range(const struct > > intel_crtc_state *crtc_state) > > } > > > > static void ilk_csc_convert_ctm(const struct intel_crtc_state *crtc_state, > > - u16 coeffs[9], bool limited_color_range) > > +

Re: [Intel-gfx] [PATCH 02/12] drm/i915: Introduce intel_csc_matrix struct

2023-04-06 Thread Nautiyal, Ankit K
On 3/29/2023 7:19 PM, Ville Syrjala wrote: From: Ville Syrjälä Introduce a structure that can hold our CSC matrices. In there we shall have the preoffsets, postoffsets, and coefficients, all in platform specific format (at least for now). We shall start by converting the ilk+ code to make us

[Intel-gfx] [PATCH 02/12] drm/i915: Introduce intel_csc_matrix struct

2023-03-29 Thread Ville Syrjala
From: Ville Syrjälä Introduce a structure that can hold our CSC matrices. In there we shall have the preoffsets, postoffsets, and coefficients, all in platform specific format (at least for now). We shall start by converting the ilk+ code to make use of the new structure. chv will come later. S