mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
Everything outside of vga.c should use VGACommonState
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
2191dffcf6
commit
a4a2f59cda
4 changed files with 14 additions and 14 deletions
|
@ -1078,7 +1078,7 @@ static void cirrus_write_bitblt(CirrusVGAState * s, unsigned reg_value)
|
|||
*
|
||||
***************************************/
|
||||
|
||||
static void cirrus_get_offsets(VGAState *s1,
|
||||
static void cirrus_get_offsets(VGACommonState *s1,
|
||||
uint32_t *pline_offset,
|
||||
uint32_t *pstart_addr,
|
||||
uint32_t *pline_compare)
|
||||
|
@ -1126,7 +1126,7 @@ static uint32_t cirrus_get_bpp16_depth(CirrusVGAState * s)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int cirrus_get_bpp(VGAState *s1)
|
||||
static int cirrus_get_bpp(VGACommonState *s1)
|
||||
{
|
||||
CirrusVGAState * s = container_of(s1, CirrusVGAState, vga);
|
||||
uint32_t ret = 8;
|
||||
|
@ -1164,7 +1164,7 @@ static int cirrus_get_bpp(VGAState *s1)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static void cirrus_get_resolution(VGAState *s, int *pwidth, int *pheight)
|
||||
static void cirrus_get_resolution(VGACommonState *s, int *pwidth, int *pheight)
|
||||
{
|
||||
int width, height;
|
||||
|
||||
|
@ -2234,7 +2234,7 @@ static inline void cirrus_cursor_compute_yrange(CirrusVGAState *s)
|
|||
|
||||
/* NOTE: we do not currently handle the cursor bitmap change, so we
|
||||
update the cursor only if it moves. */
|
||||
static void cirrus_cursor_invalidate(VGAState *s1)
|
||||
static void cirrus_cursor_invalidate(VGACommonState *s1)
|
||||
{
|
||||
CirrusVGAState *s = container_of(s1, CirrusVGAState, vga);
|
||||
int size;
|
||||
|
@ -2263,7 +2263,7 @@ static void cirrus_cursor_invalidate(VGAState *s1)
|
|||
}
|
||||
}
|
||||
|
||||
static void cirrus_cursor_draw_line(VGAState *s1, uint8_t *d1, int scr_y)
|
||||
static void cirrus_cursor_draw_line(VGACommonState *s1, uint8_t *d1, int scr_y)
|
||||
{
|
||||
CirrusVGAState *s = container_of(s1, CirrusVGAState, vga);
|
||||
int w, h, bpp, x1, x2, poffset;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue