mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	Remove mysterious hotspot switch in DRM backend
This commit is contained in:
		
							parent
							
								
									60c018c017
								
							
						
					
					
						commit
						a15b35aa10
					
				
					 2 changed files with 28 additions and 33 deletions
				
			
		| 
						 | 
					@ -533,13 +533,14 @@ static bool wlr_drm_connector_set_cursor(struct wlr_output *output,
 | 
				
			||||||
			return false;
 | 
								return false;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		if (!wlr_drm_surface_init(&plane->surf, renderer, w, h, GBM_FORMAT_ARGB8888, 0)) {
 | 
							if (!wlr_drm_surface_init(&plane->surf, renderer, w, h,
 | 
				
			||||||
 | 
									GBM_FORMAT_ARGB8888, 0)) {
 | 
				
			||||||
			wlr_log(L_ERROR, "Cannot allocate cursor resources");
 | 
								wlr_log(L_ERROR, "Cannot allocate cursor resources");
 | 
				
			||||||
			return false;
 | 
								return false;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		plane->cursor_bo = gbm_bo_create(renderer->gbm, w, h, GBM_FORMAT_ARGB8888,
 | 
							plane->cursor_bo = gbm_bo_create(renderer->gbm, w, h,
 | 
				
			||||||
			GBM_BO_USE_CURSOR | GBM_BO_USE_WRITE);
 | 
								GBM_FORMAT_ARGB8888, GBM_BO_USE_CURSOR | GBM_BO_USE_WRITE);
 | 
				
			||||||
		if (!plane->cursor_bo) {
 | 
							if (!plane->cursor_bo) {
 | 
				
			||||||
			wlr_log_errno(L_ERROR, "Failed to create cursor bo");
 | 
								wlr_log_errno(L_ERROR, "Failed to create cursor bo");
 | 
				
			||||||
			return false;
 | 
								return false;
 | 
				
			||||||
| 
						 | 
					@ -552,34 +553,26 @@ static bool wlr_drm_connector_set_cursor(struct wlr_output *output,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// TODO the image needs to be rotated depending on the output rotation
 | 
							// TODO the image needs to be rotated depending on the output rotation
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		plane->wlr_tex = wlr_render_texture_create(plane->surf.renderer->wlr_rend);
 | 
							plane->wlr_tex =
 | 
				
			||||||
 | 
								wlr_render_texture_create(plane->surf.renderer->wlr_rend);
 | 
				
			||||||
		if (!plane->wlr_tex) {
 | 
							if (!plane->wlr_tex) {
 | 
				
			||||||
			return false;
 | 
								return false;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	switch (output->transform) {
 | 
						struct wlr_box hotspot = {
 | 
				
			||||||
	case WL_OUTPUT_TRANSFORM_NORMAL:
 | 
							.width = plane->surf.width,
 | 
				
			||||||
	case WL_OUTPUT_TRANSFORM_FLIPPED_90:
 | 
							.height = plane->surf.height,
 | 
				
			||||||
		plane->cursor_hotspot_x = hotspot_x;
 | 
							.x = hotspot_x,
 | 
				
			||||||
		plane->cursor_hotspot_y = hotspot_y;
 | 
							.y = hotspot_y,
 | 
				
			||||||
		break;
 | 
						};
 | 
				
			||||||
	case WL_OUTPUT_TRANSFORM_90:
 | 
						enum wl_output_transform transform =
 | 
				
			||||||
	case WL_OUTPUT_TRANSFORM_FLIPPED_180:
 | 
							wlr_output_transform_invert(output->transform);
 | 
				
			||||||
		plane->cursor_hotspot_x = hotspot_x;
 | 
						struct wlr_box transformed_hotspot;
 | 
				
			||||||
		plane->cursor_hotspot_y = -plane->surf.height + hotspot_y;
 | 
						wlr_output_transform_apply_to_box(transform, &hotspot,
 | 
				
			||||||
		break;
 | 
							&transformed_hotspot);
 | 
				
			||||||
	case WL_OUTPUT_TRANSFORM_180:
 | 
						plane->cursor_hotspot_x = transformed_hotspot.x;
 | 
				
			||||||
	case WL_OUTPUT_TRANSFORM_FLIPPED_270:
 | 
						plane->cursor_hotspot_y = transformed_hotspot.y;
 | 
				
			||||||
		plane->cursor_hotspot_x = -plane->surf.width + hotspot_x;
 | 
					 | 
				
			||||||
		plane->cursor_hotspot_y = -plane->surf.height + hotspot_y;
 | 
					 | 
				
			||||||
		break;
 | 
					 | 
				
			||||||
	case WL_OUTPUT_TRANSFORM_FLIPPED:
 | 
					 | 
				
			||||||
	case WL_OUTPUT_TRANSFORM_270:
 | 
					 | 
				
			||||||
		plane->cursor_hotspot_x = -plane->surf.width + hotspot_x;
 | 
					 | 
				
			||||||
		plane->cursor_hotspot_y = hotspot_y;
 | 
					 | 
				
			||||||
		break;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!update_pixels) {
 | 
						if (!update_pixels) {
 | 
				
			||||||
		// Only update the cursor hotspot
 | 
							// Only update the cursor hotspot
 | 
				
			||||||
| 
						 | 
					@ -609,11 +602,13 @@ static bool wlr_drm_connector_set_cursor(struct wlr_output *output,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	float matrix[16];
 | 
						float matrix[16];
 | 
				
			||||||
	wlr_texture_get_matrix(plane->wlr_tex, &matrix, &plane->matrix, 0, 0);
 | 
						wlr_texture_get_matrix(plane->wlr_tex, &matrix, &plane->matrix, 0, 0);
 | 
				
			||||||
	wlr_render_with_matrix(plane->surf.renderer->wlr_rend, plane->wlr_tex, &matrix);
 | 
						wlr_render_with_matrix(plane->surf.renderer->wlr_rend, plane->wlr_tex,
 | 
				
			||||||
 | 
							&matrix);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	glFinish();
 | 
						glFinish();
 | 
				
			||||||
	glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, bo_stride);
 | 
						glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, bo_stride);
 | 
				
			||||||
	glReadPixels(0, 0, plane->surf.width, plane->surf.height, GL_BGRA_EXT, GL_UNSIGNED_BYTE, bo_data);
 | 
						glReadPixels(0, 0, plane->surf.width, plane->surf.height, GL_BGRA_EXT,
 | 
				
			||||||
 | 
							GL_UNSIGNED_BYTE, bo_data);
 | 
				
			||||||
	glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, 0);
 | 
						glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	wlr_drm_surface_swap_buffers(&plane->surf);
 | 
						wlr_drm_surface_swap_buffers(&plane->surf);
 | 
				
			||||||
| 
						 | 
					@ -627,10 +622,7 @@ static bool wlr_drm_connector_move_cursor(struct wlr_output *output,
 | 
				
			||||||
		int x, int y) {
 | 
							int x, int y) {
 | 
				
			||||||
	struct wlr_drm_connector *conn = (struct wlr_drm_connector *)output;
 | 
						struct wlr_drm_connector *conn = (struct wlr_drm_connector *)output;
 | 
				
			||||||
	struct wlr_drm_backend *drm = (struct wlr_drm_backend *)output->backend;
 | 
						struct wlr_drm_backend *drm = (struct wlr_drm_backend *)output->backend;
 | 
				
			||||||
 | 
					 | 
				
			||||||
	struct wlr_drm_plane *plane = conn->crtc->cursor;
 | 
						struct wlr_drm_plane *plane = conn->crtc->cursor;
 | 
				
			||||||
	x -= plane->cursor_hotspot_x;
 | 
					 | 
				
			||||||
	y -= plane->cursor_hotspot_y;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	struct wlr_box box;
 | 
						struct wlr_box box;
 | 
				
			||||||
	box.x = x;
 | 
						box.x = x;
 | 
				
			||||||
| 
						 | 
					@ -642,6 +634,9 @@ static bool wlr_drm_connector_move_cursor(struct wlr_output *output,
 | 
				
			||||||
	struct wlr_box transformed_box;
 | 
						struct wlr_box transformed_box;
 | 
				
			||||||
	wlr_output_transform_apply_to_box(transform, &box, &transformed_box);
 | 
						wlr_output_transform_apply_to_box(transform, &box, &transformed_box);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						transformed_box.x -= plane->cursor_hotspot_x;
 | 
				
			||||||
 | 
						transformed_box.y -= plane->cursor_hotspot_y;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return drm->iface->crtc_move_cursor(drm, conn->crtc, transformed_box.x,
 | 
						return drm->iface->crtc_move_cursor(drm, conn->crtc, transformed_box.x,
 | 
				
			||||||
		transformed_box.y);
 | 
							transformed_box.y);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -294,7 +294,7 @@ void wlr_output_swap_buffers(struct wlr_output *output) {
 | 
				
			||||||
	struct wlr_output_cursor *cursor;
 | 
						struct wlr_output_cursor *cursor;
 | 
				
			||||||
	wl_list_for_each(cursor, &output->cursors, link) {
 | 
						wl_list_for_each(cursor, &output->cursors, link) {
 | 
				
			||||||
		if (output->hardware_cursor == cursor) {
 | 
							if (output->hardware_cursor == cursor) {
 | 
				
			||||||
			//continue; // TODO
 | 
								continue;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		output_cursor_render(cursor);
 | 
							output_cursor_render(cursor);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					@ -342,7 +342,7 @@ bool wlr_output_cursor_set_image(struct wlr_output_cursor *cursor,
 | 
				
			||||||
			stride, width, height, hotspot_x, hotspot_y, true);
 | 
								stride, width, height, hotspot_x, hotspot_y, true);
 | 
				
			||||||
		if (ok) {
 | 
							if (ok) {
 | 
				
			||||||
			cursor->output->hardware_cursor = cursor;
 | 
								cursor->output->hardware_cursor = cursor;
 | 
				
			||||||
			//return true; // TODO
 | 
								return true;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue