mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 00:46:08 +07:00
drm/atmel-hlcdc: do not swap w/h of the crtc when a plane is rotated
The destination crtc rectangle is independent of source plane rotation. Signed-off-by: Peter Rosin <peda@axentia.se> Signed-off-by: Boris Brezillon <bbrezillon@kernel.org> Link: https://patchwork.freedesktop.org/patch/msgid/20190110151020.30468-3-peda@axentia.se
This commit is contained in:
parent
8cdb00a5e9
commit
d06fe137b5
@ -643,9 +643,6 @@ static int atmel_hlcdc_plane_atomic_check(struct drm_plane *p,
|
|||||||
* Swap width and size in case of 90 or 270 degrees rotation
|
* Swap width and size in case of 90 or 270 degrees rotation
|
||||||
*/
|
*/
|
||||||
if (drm_rotation_90_or_270(state->base.rotation)) {
|
if (drm_rotation_90_or_270(state->base.rotation)) {
|
||||||
tmp = state->crtc_w;
|
|
||||||
state->crtc_w = state->crtc_h;
|
|
||||||
state->crtc_h = tmp;
|
|
||||||
tmp = state->src_w;
|
tmp = state->src_w;
|
||||||
state->src_w = state->src_h;
|
state->src_w = state->src_h;
|
||||||
state->src_h = tmp;
|
state->src_h = tmp;
|
||||||
|
Loading…
Reference in New Issue
Block a user