diff options
author | Andres Salomon <dilinger@queued.net> | 2008-11-26 17:56:14 -0500 |
---|---|---|
committer | Jordan Crouse <jordan@cosmicpenguin.net> | 2008-11-26 16:04:47 -0700 |
commit | fe7ede0c073bd8dc22f61388b8a5d83f17696113 (patch) | |
tree | ef415cc9ee6ef4ecb9c75421c2f35d5da775823e /src/geode.h | |
parent | 8080f7a01cf62a13c5a32013668b2796c23d97a4 (diff) |
xf86-video-geode: change cursor size to match cimarron
When we use ARGB cursors and rotate the screen, we get double cursors
and stale cursor data left over. This is because cimarron expects a
cursor that is smaller than or equal to 48x64, but hardcodes a memory
shift of 192 bytes (4*48). This means that if we have a 32x64 cursor,
cimarron screws it up. Change the cursor size to 48x64.
Signed-off-by: Andres Salomon <dilinger@debian.org>
Diffstat (limited to 'src/geode.h')
-rw-r--r-- | src/geode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/geode.h b/src/geode.h index 37bee2e..755cb5e 100644 --- a/src/geode.h +++ b/src/geode.h @@ -92,7 +92,7 @@ #define DEFAULT_EXA_SCRATCH_BFRSZ 0x40000 -#define LX_CURSOR_MAX_WIDTH 32 +#define LX_CURSOR_MAX_WIDTH 48 #define LX_CURSOR_MAX_HEIGHT 64 /* FIXME: Get rid of this from GX */ |