|  |  | @ -5,7 +5,6 @@ | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <tgmath.h> |  |  |  | #include <tgmath.h> | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <time.h> |  |  |  | #include <time.h> | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <wayland-server.h> |  |  |  | #include <wayland-server.h> | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <wlr/types/wlr_box.h> |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <wlr/types/wlr_output.h> |  |  |  | #include <wlr/types/wlr_output.h> | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <wlr/types/wlr_surface.h> |  |  |  | #include <wlr/types/wlr_surface.h> | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <wlr/interfaces/wlr_output.h> |  |  |  | #include <wlr/interfaces/wlr_output.h> | 
			
		
	
	
		
		
			
				
					|  |  | @ -136,9 +135,7 @@ static void wlr_output_update_matrix(struct wlr_output *output) { | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_output_enable(struct wlr_output *output, bool enable) { |  |  |  | void wlr_output_enable(struct wlr_output *output, bool enable) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (output->impl->enable) { |  |  |  | 	output->impl->enable(output, enable); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		output->impl->enable(output, enable); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  |  | 
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | bool wlr_output_set_mode(struct wlr_output *output, |  |  |  | bool wlr_output_set_mode(struct wlr_output *output, | 
			
		
	
	
		
		
			
				
					|  |  | @ -191,199 +188,94 @@ void wlr_output_set_position(struct wlr_output *output, int32_t lx, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_output_init(struct wlr_output *output, struct wlr_backend *backend, |  |  |  | static bool set_cursor(struct wlr_output *output, const uint8_t *buf, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		const struct wlr_output_impl *impl) { |  |  |  | 		int32_t stride, uint32_t width, uint32_t height, int32_t hotspot_x, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	assert(impl->make_current && impl->swap_buffers && impl->transform); |  |  |  | 		int32_t hotspot_y) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	output->backend = backend; |  |  |  | 	if (output->impl->set_cursor | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	output->impl = impl; |  |  |  | 			&& output->impl->set_cursor(output, buf, stride, width, height, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_init(&output->modes); |  |  |  | 				hotspot_x, hotspot_y, true)) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	output->transform = WL_OUTPUT_TRANSFORM_NORMAL; |  |  |  | 		output->cursor.is_sw = false; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	output->scale = 1; |  |  |  | 		return true; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_init(&output->cursors); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_signal_init(&output->events.frame); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_signal_init(&output->events.swap_buffers); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_signal_init(&output->events.resolution); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_signal_init(&output->events.destroy); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_output_destroy(struct wlr_output *output) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (!output) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		return; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_signal_emit(&output->events.destroy, output); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_output_mode *mode, *tmp_mode; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_for_each_safe(mode, tmp_mode, &output->modes, link) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		free(mode); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_remove(&output->modes); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (output->impl && output->impl->destroy) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		output->impl->destroy(output); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} else { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		free(output); |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_output_effective_resolution(struct wlr_output *output, |  |  |  | 	wlr_log(L_INFO, "Falling back to software cursor"); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		int *width, int *height) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	// TODO: Scale factor
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (output->transform % 2 == 1) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		*width = output->height; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		*height = output->width; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} else { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		*width = output->width; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		*height = output->height; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_output_make_current(struct wlr_output *output) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	output->impl->make_current(output); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  |  | 
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void output_cursor_get_box(struct wlr_output_cursor *cursor, |  |  |  | 	output->cursor.is_sw = true; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wlr_box *box) { |  |  |  | 	output->cursor.width = width; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	box->x = cursor->x - cursor->hotspot_x; |  |  |  | 	output->cursor.height = height; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	box->y = cursor->y - cursor->hotspot_y; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	box->width = cursor->width; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	box->height = cursor->height; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void output_cursor_render(struct wlr_output_cursor *cursor) { |  |  |  | 	if (!output->cursor.renderer) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_texture *texture = cursor->texture; |  |  |  | 		output->cursor.renderer = wlr_gles2_renderer_create(output->backend); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_renderer *renderer = cursor->renderer; |  |  |  | 		if (!output->cursor.renderer) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor->surface != NULL) { |  |  |  | 			return false; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		// Some clients commit a cursor surface with a NULL buffer to hide it.
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (!wlr_surface_has_buffer(cursor->surface)) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			return; |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  | 		texture = cursor->surface->texture; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		renderer = cursor->surface->renderer; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (texture == NULL || renderer == NULL) { |  |  |  | 	if (!output->cursor.texture) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		return; |  |  |  | 		output->cursor.texture = | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 			wlr_render_texture_create(output->cursor.renderer); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 		if (!output->cursor.texture) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_box output_box; |  |  |  | 			return false; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	output_box.x = output_box.y = 0; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	output_box.width = cursor->output->width; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	output_box.height = cursor->output->height; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_box cursor_box; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	output_cursor_get_box(cursor, &cursor_box); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_box intersection; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_box *intersection_ptr = &intersection; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (!wlr_box_intersection(&output_box, &cursor_box, &intersection_ptr)) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		return; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	glViewport(0, 0, cursor->output->width, cursor->output->height); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	glEnable(GL_BLEND); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	float matrix[16]; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wlr_texture_get_matrix(texture, &matrix, |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		&cursor->output->transform_matrix, cursor->x - cursor->hotspot_x, |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		cursor->y - cursor->hotspot_y); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wlr_render_with_matrix(renderer, texture, &matrix); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_output_swap_buffers(struct wlr_output *output) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_output_cursor *cursor; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_for_each(cursor, &output->cursors, link) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (output->hardware_cursor == cursor) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			continue; |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  | 		output_cursor_render(cursor); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_signal_emit(&output->events.swap_buffers, &output); |  |  |  | 	return wlr_texture_upload_pixels(output->cursor.texture, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 		WL_SHM_FORMAT_ARGB8888, stride, width, height, buf); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	output->impl->swap_buffers(output); |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_output_set_gamma(struct wlr_output *output, |  |  |  | bool wlr_output_set_cursor(struct wlr_output *output, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	uint32_t size, uint16_t *r, uint16_t *g, uint16_t *b) { |  |  |  | 		const uint8_t *buf, int32_t stride, uint32_t width, uint32_t height, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	if (output->impl->set_gamma) { |  |  |  | 		int32_t hotspot_x, int32_t hotspot_y) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		output->impl->set_gamma(output, size, r, g, b); |  |  |  | 	if (output->cursor.surface) { | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_list_remove(&output->cursor.surface_commit.link); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_list_remove(&output->cursor.surface_destroy.link); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		output->cursor.surface = NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | uint32_t wlr_output_get_gamma_size(struct wlr_output *output) { |  |  |  | 	output->cursor.hotspot_x = hotspot_x; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	if (!output->impl->get_gamma_size) { |  |  |  | 	output->cursor.hotspot_y = hotspot_y; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		return 0; |  |  |  | 
 | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	return set_cursor(output, buf, stride, width, height, hotspot_x, hotspot_y); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	return output->impl->get_gamma_size(output); |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void output_cursor_reset(struct wlr_output_cursor *cursor) { |  |  |  | static inline int64_t timespec_to_msec(const struct timespec *a) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor->surface != NULL) { |  |  |  | 	return (int64_t)a->tv_sec * 1000 + a->tv_nsec / 1000000; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		wl_list_remove(&cursor->surface_commit.link); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		wl_list_remove(&cursor->surface_destroy.link); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		cursor->surface = NULL; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | bool wlr_output_cursor_set_image(struct wlr_output_cursor *cursor, |  |  |  | static void commit_cursor_surface(struct wlr_output *output, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		const uint8_t *pixels, int32_t stride, uint32_t width, uint32_t height, |  |  |  | 		struct wlr_surface *surface) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		int32_t hotspot_x, int32_t hotspot_y) { |  |  |  | 	if (output->cursor.is_sw) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	output_cursor_reset(cursor); |  |  |  | 		return; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->width = width; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->height = height; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->hotspot_x = hotspot_x; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->hotspot_y = hotspot_y; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor->output->hardware_cursor == NULL && |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			cursor->output->impl->set_cursor) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		int ok = cursor->output->impl->set_cursor(cursor->output, pixels, |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			stride, width, height, hotspot_x, hotspot_y, true); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (ok) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			cursor->output->hardware_cursor = cursor; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			return true; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wlr_log(L_INFO, "Falling back to software cursor"); |  |  |  | 	struct wl_shm_buffer *buffer = wl_shm_buffer_get(surface->current->buffer); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 	if (buffer == NULL) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor->renderer == NULL) { |  |  |  | 		return; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		cursor->renderer = wlr_gles2_renderer_create(cursor->output->backend); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (cursor->renderer == NULL) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			return false; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor->texture == NULL) { |  |  |  | 	uint32_t format = wl_shm_buffer_get_format(buffer); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		cursor->texture = wlr_render_texture_create(cursor->renderer); |  |  |  | 	if (format != WL_SHM_FORMAT_ARGB8888) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		if (cursor->texture == NULL) { |  |  |  | 		return; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			return false; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	return wlr_texture_upload_pixels(cursor->texture, WL_SHM_FORMAT_ARGB8888, |  |  |  | 	void *buffer_data = wl_shm_buffer_get_data(buffer); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		stride, width, height, pixels); |  |  |  | 	int32_t width = wl_shm_buffer_get_width(buffer); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | 	int32_t height = wl_shm_buffer_get_height(buffer); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 	int32_t stride = wl_shm_buffer_get_stride(buffer); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | static void output_cursor_commit(struct wlr_output_cursor *cursor) { |  |  |  | 	wl_shm_buffer_begin_access(buffer); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->width = cursor->surface->current->width; |  |  |  | 	wlr_output_set_cursor(output, buffer_data, stride/4, width, height, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->height = cursor->surface->current->height; |  |  |  | 		output->cursor.hotspot_x - surface->current->sx, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 		output->cursor.hotspot_y - surface->current->sy); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	// TODO: if hardware cursor, upload pixels
 |  |  |  | 	wl_shm_buffer_end_access(buffer); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static inline int64_t timespec_to_msec(const struct timespec *a) { |  |  |  | static void handle_cursor_surface_commit(struct wl_listener *listener, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	return (int64_t)a->tv_sec * 1000 + a->tv_nsec / 1000000; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | static void output_cursor_handle_commit(struct wl_listener *listener, |  |  |  |  | 
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		void *data) { |  |  |  | 		void *data) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_output_cursor *cursor = wl_container_of(listener, cursor, |  |  |  | 	struct wlr_output *output = wl_container_of(listener, output, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		surface_commit); |  |  |  | 		cursor.surface_commit); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_surface *surface = data; |  |  |  | 	struct wlr_surface *surface = data; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	output_cursor_commit(cursor); |  |  |  | 	commit_cursor_surface(output, surface); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct timespec now; |  |  |  | 	struct timespec now; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	clock_gettime(CLOCK_MONOTONIC, &now); |  |  |  | 	clock_gettime(CLOCK_MONOTONIC, &now); | 
			
		
	
	
		
		
			
				
					|  |  | @ -396,107 +288,169 @@ static void output_cursor_handle_commit(struct wl_listener *listener, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void output_cursor_handle_destroy(struct wl_listener *listener, |  |  |  | static void handle_cursor_surface_destroy(struct wl_listener *listener, | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		void *data) { |  |  |  | 		void *data) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_output_cursor *cursor = wl_container_of(listener, cursor, |  |  |  | 	struct wlr_output *output = wl_container_of(listener, output, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		surface_destroy); |  |  |  | 		cursor.surface_destroy); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	output_cursor_reset(cursor); |  |  |  | 
 | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_remove(&output->cursor.surface_commit.link); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_remove(&output->cursor.surface_destroy.link); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	output->cursor.surface = NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_output_cursor_set_surface(struct wlr_output_cursor *cursor, |  |  |  | void wlr_output_set_cursor_surface(struct wlr_output *output, | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		struct wlr_surface *surface, int32_t hotspot_x, int32_t hotspot_y) { |  |  |  | 		struct wlr_surface *surface, int32_t hotspot_x, int32_t hotspot_y) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (surface && strcmp(surface->role, "wl_pointer-cursor") != 0) { |  |  |  | 	if (surface && strcmp(surface->role, "wl_pointer-cursor") != 0) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		return; |  |  |  | 		return; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (surface) { |  |  |  | 	output->cursor.hotspot_x = hotspot_x; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		cursor->width = surface->current->width; |  |  |  | 	output->cursor.hotspot_y = hotspot_y; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		cursor->height = surface->current->height; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->hotspot_x = hotspot_x; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->hotspot_y = hotspot_y; |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (surface && surface == cursor->surface) { |  |  |  | 	if (surface && surface == output->cursor.surface) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		if (cursor->output->hardware_cursor == cursor && |  |  |  | 		if (output->impl->set_cursor && !output->cursor.is_sw) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 				cursor->output->impl->set_cursor) { |  |  |  | 			// Only update the hotspot
 | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			// If the surface hasn't changed and it's an hardware cursor, only
 |  |  |  | 			output->impl->set_cursor(output, NULL, 0, 0, 0, hotspot_x, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			// update the hotspot
 |  |  |  | 				hotspot_y, false); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			cursor->output->impl->set_cursor(cursor->output, NULL, 0, 0, 0, |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 				hotspot_x, hotspot_y, false); |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  | 		return; |  |  |  | 		return; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	output_cursor_reset(cursor); |  |  |  | 	if (output->cursor.surface) { | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_list_remove(&output->cursor.surface_commit.link); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_list_remove(&output->cursor.surface_destroy.link); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		output->cursor.surface = NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	// Disable hardware cursor for surfaces
 |  |  |  | 	// Disable hardware cursor
 | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	// TODO: support hardware cursors
 |  |  |  | 	// TODO: support hardware cursors
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor->output->hardware_cursor == cursor && |  |  |  | 	output->cursor.is_sw = true; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			cursor->output->impl->set_cursor) { |  |  |  | 	if (output->impl->set_cursor) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		cursor->output->impl->set_cursor(cursor->output, NULL, 0, 0, 0, 0, 0, |  |  |  | 		output->impl->set_cursor(output, NULL, 0, 0, 0, hotspot_x, hotspot_y, | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 			true); |  |  |  | 			true); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		cursor->output->hardware_cursor = NULL; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->surface = surface; |  |  |  | 	//output->cursor.is_sw = output->impl->set_cursor == NULL;
 | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	output->cursor.surface = surface; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (surface != NULL) { |  |  |  | 	if (surface != NULL) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		wl_signal_add(&surface->events.commit, &cursor->surface_commit); |  |  |  | 		wl_signal_add(&surface->events.commit, &output->cursor.surface_commit); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		wl_signal_add(&surface->events.destroy, &cursor->surface_destroy); |  |  |  | 		wl_signal_add(&surface->events.destroy, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		output_cursor_commit(cursor); |  |  |  | 			&output->cursor.surface_destroy); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		commit_cursor_surface(output, surface); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} else { |  |  |  | 	} else { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		// TODO: if hardware cursor, disable cursor
 |  |  |  | 		set_cursor(output, NULL, 0, 0, 0, hotspot_x, hotspot_y); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | bool wlr_output_cursor_move(struct wlr_output_cursor *cursor, int x, int y) { |  |  |  | bool wlr_output_move_cursor(struct wlr_output *output, int x, int y) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->x = x; |  |  |  | 	output->cursor.x = x; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->y = y; |  |  |  | 	output->cursor.y = y; | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor->output->hardware_cursor != cursor) { |  |  |  | 	if (output->cursor.is_sw) { | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		return true; |  |  |  | 		return true; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (!cursor->output->impl->move_cursor) { |  |  |  | 	if (!output->impl->move_cursor) { | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		return false; |  |  |  | 		return false; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	return cursor->output->impl->move_cursor(cursor->output, x, y); |  |  |  | 
 | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	return output->impl->move_cursor(output, x, y); | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | struct wlr_output_cursor *wlr_output_cursor_create(struct wlr_output *output) { |  |  |  | void wlr_output_init(struct wlr_output *output, struct wlr_backend *backend, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_output_cursor *cursor = |  |  |  | 		const struct wlr_output_impl *impl) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		calloc(1, sizeof(struct wlr_output_cursor)); |  |  |  | 	output->backend = backend; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor == NULL) { |  |  |  | 	output->impl = impl; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		return NULL; |  |  |  | 	wl_list_init(&output->modes); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	output->transform = WL_OUTPUT_TRANSFORM_NORMAL; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->output = output; |  |  |  | 	output->scale = 1; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_init(&cursor->surface_commit.link); |  |  |  | 	wl_signal_init(&output->events.frame); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->surface_commit.notify = output_cursor_handle_commit; |  |  |  | 	wl_signal_init(&output->events.swap_buffers); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_init(&cursor->surface_destroy.link); |  |  |  | 	wl_signal_init(&output->events.resolution); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	cursor->surface_destroy.notify = output_cursor_handle_destroy; |  |  |  | 	wl_signal_init(&output->events.destroy); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_insert(&output->cursors, &cursor->link); |  |  |  | 
 | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	return cursor; |  |  |  | 	wl_list_init(&output->cursor.surface_commit.link); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	output->cursor.surface_commit.notify = handle_cursor_surface_commit; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_init(&output->cursor.surface_destroy.link); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	output->cursor.surface_destroy.notify = handle_cursor_surface_destroy; | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_output_cursor_destroy(struct wlr_output_cursor *cursor) { |  |  |  | void wlr_output_destroy(struct wlr_output *output) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor == NULL) { |  |  |  | 	if (!output) { | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		return; |  |  |  | 		return; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	output_cursor_reset(cursor); |  |  |  | 
 | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor->output->hardware_cursor == cursor) { |  |  |  | 	wl_signal_emit(&output->events.destroy, output); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		// If this cursor was the hardware cursor, disable it
 |  |  |  | 
 | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		if (cursor->output->impl->set_cursor) { |  |  |  | 	wlr_texture_destroy(output->cursor.texture); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			cursor->output->impl->set_cursor(cursor->output, NULL, 0, 0, 0, 0, |  |  |  | 	wlr_renderer_destroy(output->cursor.renderer); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 				0, true); |  |  |  | 
 | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_output_mode *mode, *tmp_mode; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_for_each_safe(mode, tmp_mode, &output->modes, link) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		free(mode); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_remove(&output->modes); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (output->impl && output->impl->destroy) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		output->impl->destroy(output); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} else { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		free(output); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | void wlr_output_effective_resolution(struct wlr_output *output, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		int *width, int *height) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (output->transform % 2 == 1) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		*width = output->height; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		*height = output->width; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} else { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		*width = output->width; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		*height = output->height; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | void wlr_output_make_current(struct wlr_output *output) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	output->impl->make_current(output); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | void wlr_output_swap_buffers(struct wlr_output *output) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (output->cursor.is_sw) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		glViewport(0, 0, output->width, output->height); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		glEnable(GL_BLEND); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_texture *texture = output->cursor.texture; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_renderer *renderer = output->cursor.renderer; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if (output->cursor.surface) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			texture = output->cursor.surface->texture; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			renderer = output->cursor.surface->renderer; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		// We check texture->valid because some clients set a cursor surface
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		// with a NULL buffer to hide it
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if (renderer && texture && texture->valid) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			float matrix[16]; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_texture_get_matrix(texture, &matrix, &output->transform_matrix, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 				output->cursor.x, output->cursor.y); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_render_with_matrix(renderer, texture, &matrix); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  | 		cursor->output->hardware_cursor = NULL; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor->texture != NULL) { |  |  |  | 
 | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		wlr_texture_destroy(cursor->texture); |  |  |  | 	wl_signal_emit(&output->events.swap_buffers, &output); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	output->impl->swap_buffers(output); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | void wlr_output_set_gamma(struct wlr_output *output, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	uint32_t size, uint16_t *r, uint16_t *g, uint16_t *b) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (output->impl->set_gamma) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		output->impl->set_gamma(output, size, r, g, b); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (cursor->renderer != NULL) { |  |  |  | } | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		wlr_renderer_destroy(cursor->renderer); |  |  |  | 
 | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | uint32_t wlr_output_get_gamma_size(struct wlr_output *output) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (!output->impl->get_gamma_size) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		return 0; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_remove(&cursor->link); |  |  |  | 	return output->impl->get_gamma_size(output); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	free(cursor); |  |  |  |  | 
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
	
		
		
			
				
					|  |  | 
 |