kms/update: Make dst_rect a int rectangle

It's never used as a 16.16 fixed point rectangle so no reason it should
be passed around as one.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1488>
This commit is contained in:
Jonas Ådahl
2020-09-21 18:00:36 +02:00
committed by Marge Bot
parent 7f60d8bd66
commit 17712f7905
6 changed files with 19 additions and 19 deletions

View File

@ -272,7 +272,7 @@ set_crtc_cursor (MetaCursorRendererNative *native,
union gbm_bo_handle handle;
int cursor_width, cursor_height;
MetaFixed16Rectangle src_rect;
MetaFixed16Rectangle dst_rect;
MetaRectangle dst_rect;
struct gbm_bo *crtc_bo;
MetaKmsAssignPlaneFlag flags;
int cursor_hotspot_x;
@ -299,11 +299,11 @@ set_crtc_cursor (MetaCursorRendererNative *native,
.width = meta_fixed_16_from_int (cursor_width),
.height = meta_fixed_16_from_int (cursor_height),
};
dst_rect = (MetaFixed16Rectangle) {
.x = meta_fixed_16_from_int (x),
.y = meta_fixed_16_from_int (y),
.width = meta_fixed_16_from_int (cursor_width),
.height = meta_fixed_16_from_int (cursor_height),
dst_rect = (MetaRectangle) {
.x = x,
.y = y,
.width = cursor_width,
.height = cursor_height,
};
flags = META_KMS_ASSIGN_PLANE_FLAG_NONE;