drm_plane_helper_check_update — Check plane update for validity
int drm_plane_helper_check_update ( | struct drm_plane * plane, |
struct drm_crtc * crtc, | |
struct drm_framebuffer * fb, | |
struct drm_rect * src, | |
struct drm_rect * dest, | |
const struct drm_rect * clip, | |
int min_scale, | |
int max_scale, | |
bool can_position, | |
bool can_update_disabled, | |
bool * visible) ; |
plane
plane object to update
crtc
owning CRTC of owning plane
fb
framebuffer to flip onto plane
src
source coordinates in 16.16 fixed point
dest
integer destination coordinates
clip
integer clipping coordinates
min_scale
minimum src
:dest
scaling factor in 16.16 fixed point
max_scale
maximum src
:dest
scaling factor in 16.16 fixed point
can_position
is it legal to position the plane such that it doesn't cover the entire crtc? This will generally only be false for primary planes.
can_update_disabled
can the plane be updated while the crtc is disabled?
visible
output parameter indicating whether plane is still visible after clipping