From: "NĂcolas F. R. A. Prado" <[email protected]> Add a color pipeline to the CRTC state to allow post-blend color pipelines.
Signed-off-by: NĂcolas F. R. A. Prado <[email protected]> Reviewed-by: Louis Chauvet <[email protected]> Reviewed-by: Harry Wentland <[email protected]> Reviewed-by: Ariel D'Alessandro <[email protected]> --- include/drm/drm_crtc.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 66278ffeebd68..8490f4bc31260 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -274,6 +274,14 @@ struct drm_crtc_state { */ struct drm_property_blob *gamma_lut; + /** + * @color_pipeline: + * + * The first colorop of the active color pipeline, or NULL, if no + * color pipeline is active. + */ + struct drm_colorop *color_pipeline; + /** * @target_vblank: * -- 2.51.0
