mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-13 17:24:28 +08:00
drm/vmwgfx: Use drm_plane_helper_check_state()
Atomic drivers have no reason to use drm_plane_helper_check_update() instead of drm_plane_helper_check_state(). So let's switch over. Cc: VMware Graphics <linux-graphics-maintainer@vmware.com> Cc: Sinclair Yeh <syeh@vmware.com> Cc: Thomas Hellstrom <thellstrom@vmware.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20171101182920.14386-3-ville.syrjala@linux.intel.com Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Reviewed-by: Sinclair Yeh <syeh@vmware.com>
This commit is contained in:
parent
3bd6099fd6
commit
13dd5b62ce
@ -442,29 +442,18 @@ int vmw_du_primary_plane_atomic_check(struct drm_plane *plane,
|
|||||||
struct drm_plane_state *state)
|
struct drm_plane_state *state)
|
||||||
{
|
{
|
||||||
struct drm_framebuffer *new_fb = state->fb;
|
struct drm_framebuffer *new_fb = state->fb;
|
||||||
bool visible;
|
struct drm_rect clip = {
|
||||||
|
|
||||||
struct drm_rect src = {
|
|
||||||
.x1 = state->src_x,
|
|
||||||
.y1 = state->src_y,
|
|
||||||
.x2 = state->src_x + state->src_w,
|
|
||||||
.y2 = state->src_y + state->src_h,
|
|
||||||
};
|
|
||||||
struct drm_rect dest = {
|
|
||||||
.x1 = state->crtc_x,
|
.x1 = state->crtc_x,
|
||||||
.y1 = state->crtc_y,
|
.y1 = state->crtc_y,
|
||||||
.x2 = state->crtc_x + state->crtc_w,
|
.x2 = state->crtc_x + state->crtc_w,
|
||||||
.y2 = state->crtc_y + state->crtc_h,
|
.y2 = state->crtc_y + state->crtc_h,
|
||||||
};
|
};
|
||||||
struct drm_rect clip = dest;
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = drm_plane_helper_check_update(plane, state->crtc, new_fb,
|
ret = drm_plane_helper_check_state(state, &clip,
|
||||||
&src, &dest, &clip,
|
|
||||||
DRM_MODE_ROTATE_0,
|
|
||||||
DRM_PLANE_HELPER_NO_SCALING,
|
DRM_PLANE_HELPER_NO_SCALING,
|
||||||
DRM_PLANE_HELPER_NO_SCALING,
|
DRM_PLANE_HELPER_NO_SCALING,
|
||||||
false, true, &visible);
|
false, true);
|
||||||
|
|
||||||
|
|
||||||
if (!ret && new_fb) {
|
if (!ret && new_fb) {
|
||||||
|
Loading…
Reference in New Issue
Block a user