mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-08 13:29:47 -05:00
Add a new client that draws a pointer.
This commit is contained in:
parent
e120a4b1ee
commit
5a27f3e6a7
5 changed files with 195 additions and 8 deletions
|
|
@ -12,6 +12,16 @@ void wl_display_destroy(struct wl_display *display);
|
|||
int wl_display_get_fd(struct wl_display *display);
|
||||
void wl_display_iterate(struct wl_display *display, uint32_t mask);
|
||||
|
||||
typedef void (*wl_display_event_func_t)(struct wl_display *display,
|
||||
uint32_t opcode,
|
||||
uint32_t arg1, uint32_t arg2,
|
||||
void *data);
|
||||
|
||||
void wl_display_set_event_handler(struct wl_display *display,
|
||||
wl_display_event_func_t handler,
|
||||
void *data);
|
||||
|
||||
|
||||
struct wl_surface *
|
||||
wl_display_create_surface(struct wl_display *display);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue