Lines Matching refs:wl_pointer
129 struct wl_pointer * wl_pointer; member
349 static void pointer_handle_enter(void * data, struct wl_pointer * pointer, in pointer_handle_enter()
447 static void pointer_handle_leave(void * data, struct wl_pointer * pointer, in pointer_handle_leave()
460 static void pointer_handle_motion(void * data, struct wl_pointer * pointer, in pointer_handle_motion()
476 static void pointer_handle_button(void * data, struct wl_pointer * wl_pointer, in pointer_handle_button() argument
483 LV_UNUSED(wl_pointer); in pointer_handle_button()
646 static void pointer_handle_axis(void * data, struct wl_pointer * wl_pointer, in pointer_handle_axis() argument
653 LV_UNUSED(wl_pointer); in pointer_handle_axis()
1061 if((caps & WL_SEAT_CAPABILITY_POINTER) && !seat->wl_pointer) { in seat_handle_capabilities()
1062 seat->wl_pointer = wl_seat_get_pointer(wl_seat); in seat_handle_capabilities()
1063 wl_pointer_add_listener(seat->wl_pointer, &pointer_listener, app); in seat_handle_capabilities()
1069 else if(!(caps & WL_SEAT_CAPABILITY_POINTER) && seat->wl_pointer) { in seat_handle_capabilities()
1070 wl_pointer_destroy(seat->wl_pointer); in seat_handle_capabilities()
1074 seat->wl_pointer = NULL; in seat_handle_capabilities()