https://bugs.freedesktop.org/show_bug.cgi?id=79809
--- Comment #10 from Michel Dänzer <[email protected]> --- (In reply to comment #9) > I've tested on my pc and it works, but is sufficient like that or > GBM_BO_USE_CURSOR_64X64 should be used only if width and height are 64 (like > in the previous patch)? The latter, as GBM will reject cursor dimensions other than 64x64 if it doesn't define GBM_BO_USE_CURSOR. Something like this: #ifdef GBM_BO_USE_CURSOR flags = GBM_BO_USE_CURSOR | GBM_BO_USE_WRITE; #else flags = GBM_BO_USE_WRITE; if (ec->cursor_width == 64 && ec->cursor_height == 64) flags |= GBM_BO_USE_CURSOR_64X64; #endif -- You are receiving this mail because: You are the assignee for the bug.
_______________________________________________ Wayland-bugs mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/wayland-bugs
