From e30646b37d5c0208b4f0dc7dd571f60aa3a65c51 Mon Sep 17 00:00:00 2001 From: stefan11111 Date: Sat, 7 Feb 2026 02:40:56 +0200 Subject: [PATCH] modesetting: Use more conservative cursor bo flags Signed-off-by: stefan11111 --- hw/xfree86/drivers/video/modesetting/drmmode_bo.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/xfree86/drivers/video/modesetting/drmmode_bo.c b/hw/xfree86/drivers/video/modesetting/drmmode_bo.c index c86229d1fc..f8d909003c 100644 --- a/hw/xfree86/drivers/video/modesetting/drmmode_bo.c +++ b/hw/xfree86/drivers/video/modesetting/drmmode_bo.c @@ -236,7 +236,9 @@ gbm_create_cursor_bo(drmmode_ptr drmmode, Bool do_map, uint32_t width, uint32_t height) { static const uint32_t cursor_flag_list[] = { /* best flags */ +#if 0 /* Seems to have issues for now */ GBM_BO_USE_CURSOR, +#endif #if 0 /* Use these ones too if we ever need to */ GBM_BO_USE_CURSOR | GBM_BO_USE_LINEAR,