mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
drm/atomic: Add solid fill data to plane state dump
Add solid_fill property data to the atomic plane state dump. Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Acked-by: Harry Wentland <harry.wentland@amd.com> Acked-by: Sebastian Wick <sebastian@sebastianwick.net> Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20231027-solid-fill-v7-5-780188bfa7b2@quicinc.com
This commit is contained in:
committed by
Dmitry Baryshkov
parent
8283ac7871
commit
e86413f544
@@ -1641,6 +1641,14 @@ __drm_plane_get_damage_clips(const struct drm_plane_state *state)
|
||||
state->fb_damage_clips->data : NULL);
|
||||
}
|
||||
|
||||
void drm_plane_solid_fill_print_info(struct drm_printer *p, unsigned int indent,
|
||||
const struct drm_plane_state *state)
|
||||
{
|
||||
drm_printf_indent(p, indent, "r=0x%08x\n", state->solid_fill.r);
|
||||
drm_printf_indent(p, indent, "g=0x%08x\n", state->solid_fill.g);
|
||||
drm_printf_indent(p, indent, "b=0x%08x\n", state->solid_fill.b);
|
||||
}
|
||||
|
||||
/**
|
||||
* drm_plane_get_damage_clips - Returns damage clips.
|
||||
* @state: Plane state.
|
||||
|
||||
Reference in New Issue
Block a user