Alexandros Frantzis (@afrantzis) commented about dlls/winewayland.drv/waylanddrv.h:
pthread_mutex_t mutex;
};
+struct wayland_point +{
- double x;
- double y;
+};
With the move of accumulated x and y to `wayland_pointer` I don't think there is much benefit in a `struct wayland_point` anymore. A plain `double accum_x, accum_y;` or similar is enough.