diff options
| author | Timidger <APragmaticPlace@gmail.com> | 2018-12-21 13:56:10 -0500 | 
|---|---|---|
| committer | Timidger <APragmaticPlace@gmail.com> | 2018-12-21 13:56:10 -0500 | 
| commit | 9af0c5338f4f999299406530b21217bbf0aae449 (patch) | |
| tree | 42d51b82268e882dd10407dcb9a816abeb917c95 /backend/drm | |
| parent | 82d36025e1b84a317b5e48d6f622eb9583ce6f2d (diff) | |
| download | wlroots-9af0c5338f4f999299406530b21217bbf0aae449.tar.xz | |
Standardize the wlr_box input paramaters
Fixes #1094
Diffstat (limited to 'backend/drm')
| -rw-r--r-- | backend/drm/drm.c | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/backend/drm/drm.c b/backend/drm/drm.c index 332abfe5..735b7c29 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -637,8 +637,9 @@ static bool drm_connector_set_cursor(struct wlr_output *output,  		plane->surf.height, output->transform);  	struct wlr_box hotspot = { .x = hotspot_x, .y = hotspot_y }; -	wlr_box_transform(&hotspot, wlr_output_transform_invert(output->transform), -		plane->surf.width, plane->surf.height, &hotspot); +	wlr_box_transform(&hotspot, &hotspot,  +		wlr_output_transform_invert(output->transform), +		plane->surf.width, plane->surf.height);  	if (plane->cursor_hotspot_x != hotspot.x ||  			plane->cursor_hotspot_y != hotspot.y) { @@ -737,7 +738,7 @@ static bool drm_connector_move_cursor(struct wlr_output *output,  	enum wl_output_transform transform =  		wlr_output_transform_invert(output->transform); -	wlr_box_transform(&box, transform, width, height, &box); +	wlr_box_transform(&box, &box, transform, width, height);  	if (plane != NULL) {  		box.x -= plane->cursor_hotspot_x; | 
