xorg-x11-server/N_Force-swcursor-for-KMS-drivers-without-hw-cursor-sup.patch
Stefan Dirsch 220bffcd27 - Update to version 1.18.0
- refreshed N_zap_warning_xserver.diff,
    N_Force-swcursor-for-KMS-drivers-without-hw-cursor-sup.patch
  - supersedes u_fbdevhw.diff, 
    U_linux-Add-linux_parse_vt_settings-and-linux_get_keep.patch,
    U_linux-Add-a-may_fail-paramter-to-linux_parse_vt_sett.patch,
    U_systemd-logind-Only-use-systemd-logind-integration-t.patch

OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xorg-x11-server?expand=0&rev=592
2015-11-10 14:31:30 +00:00

21 lines
898 B
Diff

From b09233d2145363e9a5598818e7731b5fc06babfd Mon Sep 17 00:00:00 2001
From: Stefan Dirsch <sndirsch@suse.de>
Date: Mon, 16 Feb 2015 16:55:04 +0100
Subject: [PATCH] Force swcursor for KMS drivers without hw cursor support
hwcursor still considered broken on cirrus KMS (bnc#864141, bnc#866152)
--- xorg-server-1.18.0.orig/hw/xfree86/drivers/modesetting/driver.c 2015-11-10 14:24:35.978379000 +0100
+++ xorg-server-1.18.0/hw/xfree86/drivers/modesetting/driver.c 2015-11-10 14:58:55.846459000 +0100
@@ -855,9 +855,8 @@ PreInit(ScrnInfoPtr pScrn, int flags)
if (!xf86SetDefaultVisual(pScrn, -1))
return FALSE;
- if (xf86ReturnOptValBool(ms->drmmode.Options, OPTION_SW_CURSOR, FALSE)) {
- ms->drmmode.sw_cursor = TRUE;
- }
+ /* hw cursor still considered broken on cirrus */
+ ms->drmmode.sw_cursor = TRUE;
ms->cursor_width = 64;
ms->cursor_height = 64;