cursor: add wlr_cursor_unset_image()

It's pretty awkward to call wlr_cursor_set_image() with 6 zeroes.
Hide that awkwardness in wlroots.
This commit is contained in:
Simon Ser 2023-06-15 18:40:33 +02:00
parent da04b066ea
commit 220402b717
2 changed files with 9 additions and 0 deletions

View file

@ -147,6 +147,11 @@ void wlr_cursor_set_image(struct wlr_cursor *cur, const uint8_t *pixels,
int32_t stride, uint32_t width, uint32_t height, int32_t hotspot_x,
int32_t hotspot_y, float scale);
/**
* Hide the cursor image.
*/
void wlr_cursor_unset_image(struct wlr_cursor *cur);
/**
* Set the cursor image from an XCursor theme.
*