Home
last modified time | relevance | path

Searched refs:hw_cursor_y (Results 1 – 3 of 3) sorted by relevance

/qemu/hw/display/
H A Dati.c179 vga->hw_cursor_y != (s->regs.cur_hv_pos & 0xffff) || in ati_cursor_invalidate()
183 vga_invalidate_scanlines(vga, vga->hw_cursor_y, vga->hw_cursor_y + 63); in ati_cursor_invalidate()
185 vga->hw_cursor_y = s->regs.cur_hv_pos & 0xffff; in ati_cursor_invalidate()
191 vga->hw_cursor_y, vga->hw_cursor_y + 63); in ati_cursor_invalidate()
204 scr_y < vga->hw_cursor_y || scr_y >= vga->hw_cursor_y + 64 || in ati_cursor_draw_line()
209 srcoff = s->cursor_offset + (scr_y - vga->hw_cursor_y) * 16; in ati_cursor_draw_line()
H A Dcirrus_vga.c1359 s->vga.hw_cursor_y = (val << 3) | (s->vga.sr_index >> 5); in cirrus_vga_write_sr()
2205 s->last_hw_cursor_y != s->vga.hw_cursor_y) { in cirrus_cursor_invalidate()
2211 s->last_hw_cursor_y = s->vga.hw_cursor_y; in cirrus_cursor_invalidate()
2268 if (scr_y < s->vga.hw_cursor_y || in cirrus_cursor_draw_line()
2269 scr_y >= (s->vga.hw_cursor_y + h)) { in cirrus_cursor_draw_line()
2276 src += (scr_y - s->vga.hw_cursor_y) * 16; in cirrus_cursor_draw_line()
2284 src += (scr_y - s->vga.hw_cursor_y) * 4; in cirrus_cursor_draw_line()
2769 VMSTATE_UINT32(vga.hw_cursor_y, CirrusVGAState),
H A Dvga_int.h143 uint32_t hw_cursor_y; member