summaryrefslogtreecommitdiff
path: root/hw/display/vga_int.h
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2014-10-16 10:22:23 +0200
committerGerd Hoffmann <kraxel@redhat.com>2014-12-16 15:14:42 +0100
commit22382bb96c8bd88370c1ff0cb28c3ee6bee79ed3 (patch)
treec07c19a7aab69a8d3c5acc9b7636def3fff05acf /hw/display/vga_int.h
parentb9fd11b86779b1fe7fe2881c6e312a028e20e67c (diff)
downloadqemu-22382bb96c8bd88370c1ff0cb28c3ee6bee79ed3.tar.gz
move hw cursor pos from cirrus to vga
Diffstat (limited to 'hw/display/vga_int.h')
-rw-r--r--hw/display/vga_int.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/display/vga_int.h b/hw/display/vga_int.h
index 72e00f2e0c..fcfcc5f431 100644
--- a/hw/display/vga_int.h
+++ b/hw/display/vga_int.h
@@ -163,6 +163,8 @@ typedef struct VGACommonState {
bool default_endian_fb;
/* hardware mouse cursor support */
uint32_t invalidated_y_table[VGA_MAX_HEIGHT / 32];
+ uint32_t hw_cursor_x;
+ uint32_t hw_cursor_y;
void (*cursor_invalidate)(struct VGACommonState *s);
void (*cursor_draw_line)(struct VGACommonState *s, uint8_t *d, int y);
/* tell for each page if it has been updated since the last time */