mirror of https://github.com/xemu-project/xemu.git
use dpy_gfx_update_full
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-id: 20180810132856.22833-1-kraxel@redhat.com
This commit is contained in:
parent
161f4c4717
commit
91155f8bf7
|
@ -1272,8 +1272,6 @@ static void exynos4210_fimd_update(void *opaque)
|
||||||
uint8_t *host_fb_addr;
|
uint8_t *host_fb_addr;
|
||||||
bool is_dirty = false;
|
bool is_dirty = false;
|
||||||
const int global_width = (s->vidtcon[2] & FIMD_VIDTCON2_SIZE_MASK) + 1;
|
const int global_width = (s->vidtcon[2] & FIMD_VIDTCON2_SIZE_MASK) + 1;
|
||||||
const int global_height = ((s->vidtcon[2] >> FIMD_VIDTCON2_VER_SHIFT) &
|
|
||||||
FIMD_VIDTCON2_SIZE_MASK) + 1;
|
|
||||||
|
|
||||||
if (!s || !s->console || !s->enabled ||
|
if (!s || !s->console || !s->enabled ||
|
||||||
surface_bits_per_pixel(qemu_console_surface(s->console)) == 0) {
|
surface_bits_per_pixel(qemu_console_surface(s->console)) == 0) {
|
||||||
|
@ -1329,7 +1327,7 @@ static void exynos4210_fimd_update(void *opaque)
|
||||||
fimd_copy_line_toqemu(global_width, s->ifb + global_width * line *
|
fimd_copy_line_toqemu(global_width, s->ifb + global_width * line *
|
||||||
RGBA_SIZE, d + global_width * line * bpp);
|
RGBA_SIZE, d + global_width * line * bpp);
|
||||||
}
|
}
|
||||||
dpy_gfx_update(s->console, 0, 0, global_width, global_height);
|
dpy_gfx_update_full(s->console);
|
||||||
}
|
}
|
||||||
s->invalidate = false;
|
s->invalidate = false;
|
||||||
s->vidintcon[1] |= FIMD_VIDINT_INTFRMPEND;
|
s->vidintcon[1] |= FIMD_VIDINT_INTFRMPEND;
|
||||||
|
|
|
@ -229,7 +229,7 @@ static void g364fb_draw_blank(G364State *s)
|
||||||
d += surface_stride(surface);
|
d += surface_stride(surface);
|
||||||
}
|
}
|
||||||
|
|
||||||
dpy_gfx_update(s->con, 0, 0, s->width, s->height);
|
dpy_gfx_update_full(s->con);
|
||||||
s->blanked = 1;
|
s->blanked = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -214,8 +214,7 @@ static void jazz_led_update_display(void *opaque)
|
||||||
}
|
}
|
||||||
|
|
||||||
s->state = REDRAW_NONE;
|
s->state = REDRAW_NONE;
|
||||||
dpy_gfx_update(s->con, 0, 0,
|
dpy_gfx_update_full(s->con);
|
||||||
surface_width(surface), surface_height(surface));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void jazz_led_invalidate_display(void *opaque)
|
static void jazz_led_invalidate_display(void *opaque)
|
||||||
|
|
|
@ -461,7 +461,7 @@ static void tc6393xb_draw_graphic(TC6393xbState *s, int full_update)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
dpy_gfx_update(s->con, 0, 0, s->scr_width, s->scr_height);
|
dpy_gfx_update_full(s->con);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void tc6393xb_draw_blank(TC6393xbState *s, int full_update)
|
static void tc6393xb_draw_blank(TC6393xbState *s, int full_update)
|
||||||
|
@ -480,7 +480,7 @@ static void tc6393xb_draw_blank(TC6393xbState *s, int full_update)
|
||||||
d += surface_stride(surface);
|
d += surface_stride(surface);
|
||||||
}
|
}
|
||||||
|
|
||||||
dpy_gfx_update(s->con, 0, 0, s->scr_width, s->scr_height);
|
dpy_gfx_update_full(s->con);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void tc6393xb_update_display(void *opaque)
|
static void tc6393xb_update_display(void *opaque)
|
||||||
|
|
|
@ -1745,8 +1745,7 @@ static void vga_draw_blank(VGACommonState *s, int full_update)
|
||||||
memset(d, 0, w);
|
memset(d, 0, w);
|
||||||
d += surface_stride(surface);
|
d += surface_stride(surface);
|
||||||
}
|
}
|
||||||
dpy_gfx_update(s->con, 0, 0,
|
dpy_gfx_update_full(s->con);
|
||||||
s->last_scr_width, s->last_scr_height);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#define GMODE_TEXT 0
|
#define GMODE_TEXT 0
|
||||||
|
|
|
@ -1182,7 +1182,7 @@ static int virtio_gpu_load(QEMUFile *f, void *opaque, size_t size,
|
||||||
}
|
}
|
||||||
|
|
||||||
dpy_gfx_replace_surface(scanout->con, scanout->ds);
|
dpy_gfx_replace_surface(scanout->con, scanout->ds);
|
||||||
dpy_gfx_update(scanout->con, 0, 0, scanout->width, scanout->height);
|
dpy_gfx_update_full(scanout->con);
|
||||||
if (scanout->cursor.resource_id) {
|
if (scanout->cursor.resource_id) {
|
||||||
update_cursor(g, &scanout->cursor);
|
update_cursor(g, &scanout->cursor);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1116,7 +1116,6 @@ static inline void vmsvga_check_size(struct vmsvga_state_s *s)
|
||||||
static void vmsvga_update_display(void *opaque)
|
static void vmsvga_update_display(void *opaque)
|
||||||
{
|
{
|
||||||
struct vmsvga_state_s *s = opaque;
|
struct vmsvga_state_s *s = opaque;
|
||||||
DisplaySurface *surface;
|
|
||||||
|
|
||||||
if (!s->enable || !s->config) {
|
if (!s->enable || !s->config) {
|
||||||
/* in standard vga mode */
|
/* in standard vga mode */
|
||||||
|
@ -1125,15 +1124,13 @@ static void vmsvga_update_display(void *opaque)
|
||||||
}
|
}
|
||||||
|
|
||||||
vmsvga_check_size(s);
|
vmsvga_check_size(s);
|
||||||
surface = qemu_console_surface(s->vga.con);
|
|
||||||
|
|
||||||
vmsvga_fifo_run(s);
|
vmsvga_fifo_run(s);
|
||||||
vmsvga_update_rect_flush(s);
|
vmsvga_update_rect_flush(s);
|
||||||
|
|
||||||
if (s->invalidated) {
|
if (s->invalidated) {
|
||||||
s->invalidated = 0;
|
s->invalidated = 0;
|
||||||
dpy_gfx_update(s->vga.con, 0, 0,
|
dpy_gfx_update_full(s->vga.con);
|
||||||
surface_width(surface), surface_height(surface));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1186,8 +1186,7 @@ static void xlnx_dp_update_display(void *opaque)
|
||||||
/*
|
/*
|
||||||
* XXX: We might want to update only what changed.
|
* XXX: We might want to update only what changed.
|
||||||
*/
|
*/
|
||||||
dpy_gfx_update(s->console, 0, 0, surface_width(s->g_plane.surface),
|
dpy_gfx_update_full(s->console);
|
||||||
surface_height(s->g_plane.surface));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static const GraphicHwOps xlnx_dp_gfx_ops = {
|
static const GraphicHwOps xlnx_dp_gfx_ops = {
|
||||||
|
|
Loading…
Reference in New Issue