|  |  | @ -16,8 +16,9 @@ static void surface_attach(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *resource, |  |  |  | 		struct wl_resource *resource, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *buffer, int32_t sx, int32_t sy) { |  |  |  | 		struct wl_resource *buffer, int32_t sx, int32_t sy) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); |  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->pending.invalid |= WLR_SURFACE_INVALID_BUFFER; |  |  |  | 
 | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->pending.buffer = buffer; |  |  |  | 	surface->pending->invalid |= WLR_SURFACE_INVALID_BUFFER; | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	surface->pending->buffer = buffer; | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void surface_damage(struct wl_client *client, |  |  |  | static void surface_damage(struct wl_client *client, | 
			
		
	
	
		
		
			
				
					|  |  | @ -27,9 +28,9 @@ static void surface_damage(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (width < 0 || height < 0) { |  |  |  | 	if (width < 0 || height < 0) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		return; |  |  |  | 		return; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->pending.invalid |= WLR_SURFACE_INVALID_SURFACE_DAMAGE; |  |  |  | 	surface->pending->invalid |= WLR_SURFACE_INVALID_SURFACE_DAMAGE; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_union_rect(&surface->pending.surface_damage, |  |  |  | 	pixman_region32_union_rect(&surface->pending->surface_damage, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		&surface->pending.surface_damage, |  |  |  | 		&surface->pending->surface_damage, | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		x, y, width, height); |  |  |  | 		x, y, width, height); | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | @ -61,22 +62,24 @@ static void surface_frame(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_resource_set_implementation(cb->resource, |  |  |  | 	wl_resource_set_implementation(cb->resource, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		NULL, cb, destroy_frame_callback); |  |  |  | 		NULL, cb, destroy_frame_callback); | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_insert(surface->frame_callback_list.prev, &cb->link); |  |  |  | 	wl_list_insert(surface->pending->frame_callback_list.prev, &cb->link); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	surface->pending->invalid |= WLR_SURFACE_INVALID_FRAME_CALLBACK_LIST; | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void surface_set_opaque_region(struct wl_client *client, |  |  |  | static void surface_set_opaque_region(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *resource, |  |  |  | 		struct wl_resource *resource, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *region_resource) { |  |  |  | 		struct wl_resource *region_resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); |  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if ((surface->pending.invalid & WLR_SURFACE_INVALID_OPAQUE_REGION)) { |  |  |  | 	if ((surface->pending->invalid & WLR_SURFACE_INVALID_OPAQUE_REGION)) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_clear(&surface->pending.opaque); |  |  |  | 		pixman_region32_clear(&surface->pending->opaque); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->pending.invalid |= WLR_SURFACE_INVALID_OPAQUE_REGION; |  |  |  | 	surface->pending->invalid |= WLR_SURFACE_INVALID_OPAQUE_REGION; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	if (region_resource) { |  |  |  | 	if (region_resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_t *region = wl_resource_get_user_data(region_resource); |  |  |  | 		pixman_region32_t *region = wl_resource_get_user_data(region_resource); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_copy(&surface->pending.opaque, region); |  |  |  | 		pixman_region32_copy(&surface->pending->opaque, region); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} else { |  |  |  | 	} else { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_clear(&surface->pending.opaque); |  |  |  | 		pixman_region32_clear(&surface->pending->opaque); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | @ -84,28 +87,28 @@ static void surface_set_input_region(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *resource, |  |  |  | 		struct wl_resource *resource, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *region_resource) { |  |  |  | 		struct wl_resource *region_resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); |  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if ((surface->pending.invalid & WLR_SURFACE_INVALID_INPUT_REGION)) { |  |  |  | 	if ((surface->pending->invalid & WLR_SURFACE_INVALID_INPUT_REGION)) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_clear(&surface->pending.input); |  |  |  | 		pixman_region32_clear(&surface->pending->input); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->pending.invalid |= WLR_SURFACE_INVALID_INPUT_REGION; |  |  |  | 	surface->pending->invalid |= WLR_SURFACE_INVALID_INPUT_REGION; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	if (region_resource) { |  |  |  | 	if (region_resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_t *region = wl_resource_get_user_data(region_resource); |  |  |  | 		pixman_region32_t *region = wl_resource_get_user_data(region_resource); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_copy(&surface->pending.input, region); |  |  |  | 		pixman_region32_copy(&surface->pending->input, region); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} else { |  |  |  | 	} else { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_init_rect(&surface->pending.input, |  |  |  | 		pixman_region32_init_rect(&surface->pending->input, | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 			INT32_MIN, INT32_MIN, UINT32_MAX, UINT32_MAX); |  |  |  | 			INT32_MIN, INT32_MIN, UINT32_MAX, UINT32_MAX); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void wlr_surface_update_size(struct wlr_surface *surface) { |  |  |  | static void wlr_surface_update_size(struct wlr_surface *surface, struct wlr_surface_state *current) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	int scale = surface->current.scale; |  |  |  | 	int scale = current->scale; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	enum wl_output_transform transform = surface->current.transform; |  |  |  | 	enum wl_output_transform transform = current->transform; | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wlr_texture_get_buffer_size(surface->texture, surface->current.buffer, |  |  |  | 	wlr_texture_get_buffer_size(surface->texture, current->buffer, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		&surface->current.buffer_width, &surface->current.buffer_height); |  |  |  | 		¤t->buffer_width, ¤t->buffer_height); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	int _width = surface->current.buffer_width / scale; |  |  |  | 	int _width = current->buffer_width / scale; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	int _height = surface->current.buffer_height / scale; |  |  |  | 	int _height = current->buffer_height / scale; | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (transform == WL_OUTPUT_TRANSFORM_90 || |  |  |  | 	if (transform == WL_OUTPUT_TRANSFORM_90 || | 
			
		
	
		
		
			
				
					
					|  |  |  | 		transform == WL_OUTPUT_TRANSFORM_270 || |  |  |  | 		transform == WL_OUTPUT_TRANSFORM_270 || | 
			
		
	
	
		
		
			
				
					|  |  | @ -116,17 +119,18 @@ static void wlr_surface_update_size(struct wlr_surface *surface) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		_height = tmp; |  |  |  | 		_height = tmp; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->current.width = _width; |  |  |  | 	wl_list_init(¤t->frame_callback_list); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->current.height = _height; |  |  |  | 
 | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	current->width = _width; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	current->height = _height; | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void wlr_surface_to_buffer_region(struct wlr_surface *surface, |  |  |  | static void wlr_surface_to_buffer_region(int scale, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_t *surface_region, pixman_region32_t *buffer_region, |  |  |  | 		enum wl_output_transform transform, pixman_region32_t *surface_region, | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_t *buffer_region, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		int width, int height) { |  |  |  | 		int width, int height) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_box32_t *src_rects, *dest_rects; |  |  |  | 	pixman_box32_t *src_rects, *dest_rects; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	int nrects, i; |  |  |  | 	int nrects, i; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	int scale = surface->current.scale; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	enum wl_output_transform transform = surface->current.transform; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	src_rects = pixman_region32_rectangles(surface_region, &nrects); |  |  |  | 	src_rects = pixman_region32_rectangles(surface_region, &nrects); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	dest_rects = malloc(nrects * sizeof(*dest_rects)); |  |  |  | 	dest_rects = malloc(nrects * sizeof(*dest_rects)); | 
			
		
	
	
		
		
			
				
					|  |  | @ -202,45 +206,129 @@ static void wlr_surface_to_buffer_region(struct wlr_surface *surface, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	free(dest_rects); |  |  |  | 	free(dest_rects); | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | /**
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  * Append pending state to current state and clear pending state. | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  */ | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void wlr_surface_move_state(struct wlr_surface *surface, struct wlr_surface_state *pending, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_surface_state *current) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	bool update_damage = false; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	bool update_size = false; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_SCALE)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		current->scale = pending->scale; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		update_size = true; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_TRANSFORM)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		current->transform = pending->transform; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		update_size = true; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_BUFFER)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if (current->buffer) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wl_resource_post_event(current->buffer, WL_BUFFER_RELEASE); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		current->buffer = pending->buffer; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pending->buffer = NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		update_size = true; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (update_size) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wlr_surface_update_size(surface, current); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_SURFACE_DAMAGE)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_union(¤t->surface_damage, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			¤t->surface_damage, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			&pending->surface_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_intersect_rect(¤t->surface_damage, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			¤t->surface_damage, 0, 0, current->width, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			current->height); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_clear(&pending->surface_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		update_damage = true; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_BUFFER_DAMAGE)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_union(¤t->buffer_damage, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			¤t->buffer_damage, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			&pending->buffer_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_clear(&pending->buffer_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		update_damage = true; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (update_damage) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_t buffer_damage; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_init(&buffer_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wlr_surface_to_buffer_region(current->scale, current->transform, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			¤t->surface_damage, &buffer_damage, current->width, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			current->height); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_union(¤t->buffer_damage, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			¤t->buffer_damage, &buffer_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_fini(&buffer_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_intersect_rect(¤t->buffer_damage, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			¤t->buffer_damage, 0, 0, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			current->buffer_width, current->buffer_height); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_OPAQUE_REGION)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		// TODO: process buffer
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_clear(&pending->opaque); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_INPUT_REGION)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		// TODO: process buffer
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pixman_region32_clear(&pending->input); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_SUBSURFACE_POSITION)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		current->subsurface_position.x = pending->subsurface_position.x; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		current->subsurface_position.y = pending->subsurface_position.y; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pending->subsurface_position.x = 0; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		pending->subsurface_position.y = 0; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_FRAME_CALLBACK_LIST)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_list_insert_list(¤t->frame_callback_list, &pending->frame_callback_list); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_list_init(&pending->frame_callback_list); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	current->invalid |= pending->invalid; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	pending->invalid = 0; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void wlr_surface_commit_state(struct wlr_surface *surface, |  |  |  | static void wlr_surface_commit_state(struct wlr_surface *surface, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wlr_surface_state *pending) { |  |  |  | 		struct wlr_surface_state *pending) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	bool update_size = false; |  |  |  | 	bool update_size = false; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	bool update_damage = false; |  |  |  | 	bool update_damage = false; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_SCALE)) { |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_SCALE)) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		surface->current.scale = pending->scale; |  |  |  | 		surface->current->scale = pending->scale; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		update_size = true; |  |  |  | 		update_size = true; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_TRANSFORM)) { |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_TRANSFORM)) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		surface->current.transform = pending->transform; |  |  |  | 		surface->current->transform = pending->transform; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		update_size = true; |  |  |  | 		update_size = true; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_BUFFER)) { |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_BUFFER)) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		surface->current.buffer = pending->buffer; |  |  |  | 		surface->current->buffer = pending->buffer; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		update_size = true; |  |  |  | 		update_size = true; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (update_size) { |  |  |  | 	if (update_size) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		int32_t oldw = surface->current.buffer_width; |  |  |  | 		int32_t oldw = surface->current->buffer_width; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		int32_t oldh = surface->current.buffer_height; |  |  |  | 		int32_t oldh = surface->current->buffer_height; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		wlr_surface_update_size(surface); |  |  |  | 		wlr_surface_update_size(surface, surface->current); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		surface->reupload_buffer = oldw != surface->current.buffer_width || |  |  |  | 		surface->reupload_buffer = oldw != surface->current->buffer_width || | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			oldh != surface->current.buffer_height; |  |  |  | 			oldh != surface->current->buffer_height; | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_SURFACE_DAMAGE)) { |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_SURFACE_DAMAGE)) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_union(&surface->current.surface_damage, |  |  |  | 		pixman_region32_union(&surface->current->surface_damage, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			&surface->current.surface_damage, |  |  |  | 			&surface->current->surface_damage, | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 			&pending->surface_damage); |  |  |  | 			&pending->surface_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_intersect_rect(&surface->current.surface_damage, |  |  |  | 		pixman_region32_intersect_rect(&surface->current->surface_damage, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			&surface->current.surface_damage, 0, 0, surface->current.width, |  |  |  | 			&surface->current->surface_damage, 0, 0, surface->current->width, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			surface->current.height); |  |  |  | 			surface->current->height); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_clear(&pending->surface_damage); |  |  |  | 		pixman_region32_clear(&pending->surface_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		update_damage = true; |  |  |  | 		update_damage = true; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_BUFFER_DAMAGE)) { |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_BUFFER_DAMAGE)) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_union(&surface->current.buffer_damage, |  |  |  | 		pixman_region32_union(&surface->current->buffer_damage, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			&surface->current.buffer_damage, |  |  |  | 			&surface->current->buffer_damage, | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 			&pending->buffer_damage); |  |  |  | 			&pending->buffer_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_clear(&pending->buffer_damage); |  |  |  | 		pixman_region32_clear(&pending->buffer_damage); | 
			
		
	
	
		
		
			
				
					|  |  | @ -249,15 +337,16 @@ static void wlr_surface_commit_state(struct wlr_surface *surface, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (update_damage) { |  |  |  | 	if (update_damage) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_t buffer_damage; |  |  |  | 		pixman_region32_t buffer_damage; | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_init(&buffer_damage); |  |  |  | 		pixman_region32_init(&buffer_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		wlr_surface_to_buffer_region(surface, &surface->current.surface_damage, |  |  |  | 		wlr_surface_to_buffer_region(surface->current->scale, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			&buffer_damage, surface->current.width, surface->current.height); |  |  |  | 			surface->current->transform, &surface->current->surface_damage, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_union(&surface->current.buffer_damage, |  |  |  | 			&buffer_damage, surface->current->width, surface->current->height); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			&surface->current.buffer_damage, &buffer_damage); |  |  |  | 		pixman_region32_union(&surface->current->buffer_damage, | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			&surface->current->buffer_damage, &buffer_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_fini(&buffer_damage); |  |  |  | 		pixman_region32_fini(&buffer_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_intersect_rect(&surface->current.buffer_damage, |  |  |  | 		pixman_region32_intersect_rect(&surface->current->buffer_damage, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			&surface->current.buffer_damage, 0, 0, |  |  |  | 			&surface->current->buffer_damage, 0, 0, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			surface->current.buffer_width, surface->current.buffer_height); |  |  |  | 			surface->current->buffer_width, surface->current->buffer_height); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_OPAQUE_REGION)) { |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_OPAQUE_REGION)) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		// TODO: process buffer
 |  |  |  | 		// TODO: process buffer
 | 
			
		
	
	
		
		
			
				
					|  |  | @ -267,31 +356,114 @@ static void wlr_surface_commit_state(struct wlr_surface *surface, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		// TODO: process buffer
 |  |  |  | 		// TODO: process buffer
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_clear(&pending->input); |  |  |  | 		pixman_region32_clear(&pending->input); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_SUBSURFACE_POSITION)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		surface->current->subsurface_position.x = pending->subsurface_position.x; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		surface->current->subsurface_position.y = pending->subsurface_position.y; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if ((pending->invalid & WLR_SURFACE_INVALID_FRAME_CALLBACK_LIST)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_list_insert_list(&surface->current->frame_callback_list, &pending->frame_callback_list); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_list_init(&pending->frame_callback_list); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	pending->invalid = 0; |  |  |  | 	pending->invalid = 0; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	// TODO: add the invalid bitfield to this callback
 |  |  |  | 	// TODO: add the invalid bitfield to this callback
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_signal_emit(&surface->signals.commit, surface); |  |  |  | 	wl_signal_emit(&surface->signals.commit, surface); | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static bool wlr_subsurface_is_synchronized(struct wlr_subsurface *subsurface) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	while (subsurface) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if (subsurface->synchronized) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			return true; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if (!subsurface->parent) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			return false; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		subsurface = subsurface->parent->subsurface; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	return false; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | /**
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  * Recursive function to commit the effectively synchronized children. | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |  */ | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void wlr_subsurface_parent_commit(struct wlr_subsurface *subsurface, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		bool synchronized) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_surface *surface = subsurface->surface; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (synchronized || subsurface->synchronized) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if (subsurface->has_cache) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_surface_move_state(surface, subsurface->cached, surface->pending); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_surface_flush_damage(surface); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_surface_commit_state(surface, surface->pending); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			subsurface->has_cache = false; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			subsurface->cached->invalid = 0; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_subsurface *tmp; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_list_for_each(tmp, &surface->subsurface_list, parent_link) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_subsurface_parent_commit(tmp, true); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void wlr_subsurface_commit(struct wlr_subsurface *subsurface) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_surface *surface = subsurface->surface; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (wlr_subsurface_is_synchronized(subsurface)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wlr_surface_move_state(surface, surface->pending, subsurface->cached); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		subsurface->has_cache = true; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} else { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if (subsurface->has_cache) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_surface_move_state(surface, subsurface->cached, surface->pending); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_surface_commit_state(surface, surface->pending); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_surface_flush_damage(surface); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			subsurface->has_cache = false; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} else { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_surface_commit_state(surface, surface->pending); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_subsurface *tmp; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_list_for_each(tmp, &surface->subsurface_list, parent_link) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_subsurface_parent_commit(tmp, false); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void surface_commit(struct wl_client *client, |  |  |  | static void surface_commit(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *resource) { |  |  |  | 		struct wl_resource *resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); |  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_subsurface *subsurface = surface->subsurface; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wlr_surface_commit_state(surface, &surface->pending); |  |  |  | 	if (subsurface) { | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wlr_subsurface_commit(subsurface); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		return; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wlr_surface_commit_state(surface, surface->pending); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_subsurface *tmp; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_for_each(tmp, &surface->subsurface_list, parent_link) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wlr_subsurface_parent_commit(tmp, false); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_surface_flush_damage(struct wlr_surface *surface) { |  |  |  | void wlr_surface_flush_damage(struct wlr_surface *surface) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (!surface->current.buffer) { |  |  |  | 	if (!surface->current->buffer) { | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		if (surface->texture->valid) { |  |  |  | 		if (surface->texture->valid) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 			// TODO: Detach buffers
 |  |  |  | 			// TODO: Detach buffers
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  | 		return; |  |  |  | 		return; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wl_shm_buffer *buffer = wl_shm_buffer_get(surface->current.buffer); |  |  |  | 	struct wl_shm_buffer *buffer = wl_shm_buffer_get(surface->current->buffer); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	if (!buffer) { |  |  |  | 	if (!buffer) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (wlr_renderer_buffer_is_drm(surface->renderer, |  |  |  | 		if (wlr_renderer_buffer_is_drm(surface->renderer, | 
			
		
	
		
		
			
				
					
					|  |  |  | 					surface->pending.buffer)) { |  |  |  | 					surface->pending->buffer)) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			wlr_texture_upload_drm(surface->texture, surface->pending.buffer); |  |  |  | 			wlr_texture_upload_drm(surface->texture, surface->pending->buffer); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 			goto release; |  |  |  | 			goto release; | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} else { |  |  |  | 		} else { | 
			
		
	
		
		
			
				
					
					|  |  |  | 			wlr_log(L_INFO, "Unknown buffer handle attached"); |  |  |  | 			wlr_log(L_INFO, "Unknown buffer handle attached"); | 
			
		
	
	
		
		
			
				
					|  |  | @ -303,7 +475,7 @@ void wlr_surface_flush_damage(struct wlr_surface *surface) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (surface->reupload_buffer) { |  |  |  | 	if (surface->reupload_buffer) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		wlr_texture_upload_shm(surface->texture, format, buffer); |  |  |  | 		wlr_texture_upload_shm(surface->texture, format, buffer); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} else { |  |  |  | 	} else { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		pixman_region32_t damage = surface->current.buffer_damage; |  |  |  | 		pixman_region32_t damage = surface->current->buffer_damage; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		if (!pixman_region32_not_empty(&damage)) { |  |  |  | 		if (!pixman_region32_not_empty(&damage)) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 			goto release; |  |  |  | 			goto release; | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  | 		} | 
			
		
	
	
		
		
			
				
					|  |  | @ -322,26 +494,26 @@ void wlr_surface_flush_damage(struct wlr_surface *surface) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | release: |  |  |  | release: | 
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_clear(&surface->current.surface_damage); |  |  |  | 	pixman_region32_clear(&surface->current->surface_damage); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_clear(&surface->current.buffer_damage); |  |  |  | 	pixman_region32_clear(&surface->current->buffer_damage); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_resource_post_event(surface->current.buffer, WL_BUFFER_RELEASE); |  |  |  | 	wl_resource_post_event(surface->current->buffer, WL_BUFFER_RELEASE); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->current.buffer = NULL; |  |  |  | 	surface->current->buffer = NULL; | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void surface_set_buffer_transform(struct wl_client *client, |  |  |  | static void surface_set_buffer_transform(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *resource, int transform) { |  |  |  | 		struct wl_resource *resource, int transform) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); |  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->pending.invalid |= WLR_SURFACE_INVALID_TRANSFORM; |  |  |  | 	surface->pending->invalid |= WLR_SURFACE_INVALID_TRANSFORM; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->pending.transform = transform; |  |  |  | 	surface->pending->transform = transform; | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void surface_set_buffer_scale(struct wl_client *client, |  |  |  | static void surface_set_buffer_scale(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *resource, |  |  |  | 		struct wl_resource *resource, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		int32_t scale) { |  |  |  | 		int32_t scale) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); |  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->pending.invalid |= WLR_SURFACE_INVALID_SCALE; |  |  |  | 	surface->pending->invalid |= WLR_SURFACE_INVALID_SCALE; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->pending.scale = scale; |  |  |  | 	surface->pending->scale = scale; | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void surface_damage_buffer(struct wl_client *client, |  |  |  | static void surface_damage_buffer(struct wl_client *client, | 
			
		
	
	
		
		
			
				
					|  |  | @ -352,9 +524,9 @@ static void surface_damage_buffer(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (width < 0 || height < 0) { |  |  |  | 	if (width < 0 || height < 0) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		return; |  |  |  | 		return; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->pending.invalid |= WLR_SURFACE_INVALID_BUFFER_DAMAGE; |  |  |  | 	surface->pending->invalid |= WLR_SURFACE_INVALID_BUFFER_DAMAGE; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_union_rect(&surface->pending.buffer_damage, |  |  |  | 	pixman_region32_union_rect(&surface->pending->buffer_damage, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		&surface->pending.buffer_damage, |  |  |  | 		&surface->pending->buffer_damage, | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		x, y, width, height); |  |  |  | 		x, y, width, height); | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | @ -371,31 +543,58 @@ const struct wl_surface_interface surface_interface = { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	.damage_buffer = surface_damage_buffer |  |  |  | 	.damage_buffer = surface_damage_buffer | 
			
		
	
		
		
			
				
					
					|  |  |  | }; |  |  |  | }; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void destroy_surface(struct wl_resource *resource) { |  |  |  | static struct wlr_surface_state *wlr_surface_state_create() { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); |  |  |  | 	struct wlr_surface_state *state = calloc(1, sizeof(struct wlr_surface_state)); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_signal_emit(&surface->signals.destroy, surface); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wlr_texture_destroy(surface->texture); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_frame_callback *cb, *next; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_for_each_safe(cb, next, &surface->frame_callback_list, link) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		wl_resource_destroy(cb->resource); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_fini(&surface->pending.surface_damage); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_fini(&surface->pending.buffer_damage); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_fini(&surface->pending.opaque); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_fini(&surface->pending.input); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	free(surface); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_surface_state_init(struct wlr_surface_state *state) { |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	state->scale = 1; |  |  |  | 	state->scale = 1; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	state->transform = WL_OUTPUT_TRANSFORM_NORMAL; |  |  |  | 	state->transform = WL_OUTPUT_TRANSFORM_NORMAL; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_init(&state->frame_callback_list); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_init(&state->surface_damage); |  |  |  | 	pixman_region32_init(&state->surface_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_init(&state->buffer_damage); |  |  |  | 	pixman_region32_init(&state->buffer_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_init(&state->opaque); |  |  |  | 	pixman_region32_init(&state->opaque); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	pixman_region32_init(&state->input); |  |  |  | 	pixman_region32_init(&state->input); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	return state; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void wlr_surface_state_destroy(struct wlr_surface_state *current) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_frame_callback *cb, *tmp; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_for_each_safe(cb, tmp, ¤t->frame_callback_list, link) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_resource_destroy(cb->resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	pixman_region32_fini(¤t->surface_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	pixman_region32_fini(¤t->buffer_damage); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	pixman_region32_fini(¤t->opaque); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	pixman_region32_fini(¤t->input); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	free(current); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | void wlr_subsurface_destroy(struct wlr_subsurface *subsurface) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wlr_surface_state_destroy(subsurface->cached); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_remove(&subsurface->parent_link); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_resource_set_user_data(subsurface->resource, NULL); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (subsurface->surface) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		subsurface->surface->subsurface = NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	free(subsurface); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void destroy_surface(struct wl_resource *resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_surface *surface = wl_resource_get_user_data(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_signal_emit(&surface->signals.destroy, surface); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (surface->subsurface) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wlr_subsurface_destroy(surface->subsurface); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wlr_texture_destroy(surface->texture); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wlr_surface_state_destroy(surface->pending); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wlr_surface_state_destroy(surface->current); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	free(surface); | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | struct wlr_surface *wlr_surface_create(struct wl_resource *res, |  |  |  | struct wlr_surface *wlr_surface_create(struct wl_resource *res, | 
			
		
	
	
		
		
			
				
					|  |  | @ -410,12 +609,12 @@ struct wlr_surface *wlr_surface_create(struct wl_resource *res, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->texture = wlr_render_texture_create(renderer); |  |  |  | 	surface->texture = wlr_render_texture_create(renderer); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	surface->resource = res; |  |  |  | 	surface->resource = res; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wlr_surface_state_init(&surface->current); |  |  |  | 	surface->current = wlr_surface_state_create(); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	wlr_surface_state_init(&surface->pending); |  |  |  | 	surface->pending = wlr_surface_state_create(); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_signal_init(&surface->signals.commit); |  |  |  | 	wl_signal_init(&surface->signals.commit); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_signal_init(&surface->signals.destroy); |  |  |  | 	wl_signal_init(&surface->signals.destroy); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_list_init(&surface->frame_callback_list); |  |  |  | 	wl_list_init(&surface->subsurface_list); | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	wl_resource_set_implementation(res, &surface_interface, |  |  |  | 	wl_resource_set_implementation(res, &surface_interface, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		surface, destroy_surface); |  |  |  | 		surface, destroy_surface); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	return surface; |  |  |  | 	return surface; | 
			
		
	
	
		
		
			
				
					|  |  | @ -425,8 +624,8 @@ void wlr_surface_get_matrix(struct wlr_surface *surface, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		float (*matrix)[16], |  |  |  | 		float (*matrix)[16], | 
			
		
	
		
		
			
				
					
					|  |  |  | 		const float (*projection)[16], |  |  |  | 		const float (*projection)[16], | 
			
		
	
		
		
			
				
					
					|  |  |  | 		const float (*transform)[16]) { |  |  |  | 		const float (*transform)[16]) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	int width = surface->texture->width / surface->current.scale; |  |  |  | 	int width = surface->texture->width / surface->current->scale; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	int height = surface->texture->height / surface->current.scale; |  |  |  | 	int height = surface->texture->height / surface->current->scale; | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	float scale[16]; |  |  |  | 	float scale[16]; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wlr_matrix_identity(matrix); |  |  |  | 	wlr_matrix_identity(matrix); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (transform) { |  |  |  | 	if (transform) { | 
			
		
	
	
		
		
			
				
					|  |  | @ -458,26 +657,6 @@ int wlr_surface_set_role(struct wlr_surface *surface, const char *role, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	return -1; |  |  |  | 	return -1; | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | void wlr_subsurface_destroy(struct wlr_subsurface *subsurface) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wlr_log(L_DEBUG, "TODO: wlr subsurface destroy"); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | static bool wlr_subsurface_is_synchronized(struct wlr_subsurface *subsurface) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	while (subsurface) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (subsurface->synchronized) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			return true; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (!subsurface->parent) { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			return false; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		subsurface = subsurface->parent->subsurface; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	return false; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | static void subsurface_resource_destroy(struct wl_resource *resource) { |  |  |  | static void subsurface_resource_destroy(struct wl_resource *resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_subsurface *subsurface = wl_resource_get_user_data(resource); |  |  |  | 	struct wlr_subsurface *subsurface = wl_resource_get_user_data(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | @ -494,9 +673,12 @@ static void subsurface_destroy(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | static void subsurface_set_position(struct wl_client *client, |  |  |  | static void subsurface_set_position(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *resource, int32_t x, int32_t y) { |  |  |  | 		struct wl_resource *resource, int32_t x, int32_t y) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_subsurface *subsurface = wl_resource_get_user_data(resource); |  |  |  | 	struct wlr_subsurface *subsurface = wl_resource_get_user_data(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	subsurface->pending_position.set = true; |  |  |  | 	struct wlr_surface *surface = subsurface->surface; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	subsurface->pending_position.x = x; |  |  |  | 
 | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	subsurface->pending_position.y = y; |  |  |  | 	surface->pending->invalid |= WLR_SURFACE_INVALID_SUBSURFACE_POSITION; | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	surface->pending->subsurface_position.x = x; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	surface->pending->subsurface_position.y = y; | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void subsurface_place_above(struct wl_client *client, |  |  |  | static void subsurface_place_above(struct wl_client *client, | 
			
		
	
	
		
		
			
				
					|  |  | @ -527,6 +709,7 @@ static void subsurface_set_desync(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (!wlr_subsurface_is_synchronized(subsurface)) { |  |  |  | 		if (!wlr_subsurface_is_synchronized(subsurface)) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 			// TODO: do a synchronized commit to flush the cache
 |  |  |  | 			// TODO: do a synchronized commit to flush the cache
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wlr_subsurface_parent_commit(subsurface, true); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
	
		
		
			
				
					|  |  | @ -549,9 +732,12 @@ void wlr_surface_make_subsurface(struct wlr_surface *surface, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (!subsurface) { |  |  |  | 	if (!subsurface) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 		return; |  |  |  | 		return; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	subsurface->cached = wlr_surface_state_create(); | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	subsurface->surface = surface; |  |  |  | 	subsurface->surface = surface; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	subsurface->parent = parent; |  |  |  | 	subsurface->parent = parent; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	subsurface->synchronized = true; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_insert(&parent->subsurface_list, &subsurface->parent_link); | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wl_client *client = wl_resource_get_client(surface->resource); |  |  |  | 	struct wl_client *client = wl_resource_get_client(surface->resource); | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | 
 |