aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorVersus Void <versusvoid@gmail.com>2017-10-06 09:07:08 +0300
committerVersus Void <versusvoid@gmail.com>2017-10-06 09:07:08 +0300
commit641d08ce7eba1464c535feb04513374cde22ed17 (patch)
tree717b6aca401f982a3f7d3dfc28eac4328b2f4bf5 /examples
parentb2d478a4189ffd96dc6158003f5cde76b70bd368 (diff)
Transform hotspot with cursor
Fix #188
Diffstat (limited to 'examples')
-rw-r--r--examples/pointer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/pointer.c b/examples/pointer.c
index 11f67f9b..238be9b3 100644
--- a/examples/pointer.c
+++ b/examples/pointer.c
@@ -112,7 +112,8 @@ static void handle_output_add(struct output_state *ostate) {
// TODO the cursor must be set depending on which surface it is displayed
// over which should happen in the compositor.
if (!wlr_output_set_cursor(wlr_output, image->buffer,
- image->width, image->width, image->height)) {
+ image->width, image->width, image->height,
+ image->hotspot_x, image->hotspot_y)) {
wlr_log(L_DEBUG, "Failed to set hardware cursor");
return;
}