mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			559 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			559 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <stdlib.h>
 | 
						|
#include <wayland-server.h>
 | 
						|
#include <wlr/types/wlr_input_device.h>
 | 
						|
#include <wlr/types/wlr_pointer.h>
 | 
						|
#include "rootston/input.h"
 | 
						|
 | 
						|
void pointer_add(struct wlr_input_device *device, struct roots_input *input) {
 | 
						|
	struct roots_pointer *pointer = calloc(sizeof(struct roots_pointer), 1);
 | 
						|
	pointer->device = device;
 | 
						|
	pointer->input = input;
 | 
						|
	wl_list_insert(&input->pointers, &pointer->link);
 | 
						|
	wlr_cursor_attach_input_device(input->cursor, device);
 | 
						|
	cursor_load_config(input->server->config, input->cursor,
 | 
						|
			input, input->server->desktop);
 | 
						|
}
 |