Lines Matching refs:ts

214     TCXState *ts = opaque;  in tcx_update_display()  local
215 DisplaySurface *surface = qemu_console_surface(ts->con); in tcx_update_display()
226 s = ts->vram; in tcx_update_display()
230 snap = memory_region_snapshot_and_clear_dirty(&ts->vram_mem, 0x0, in tcx_update_display()
231 memory_region_size(&ts->vram_mem), in tcx_update_display()
234 for (y = 0; y < ts->height; y++, page += ds) { in tcx_update_display()
235 if (tcx_check_dirty(ts, snap, page, ds)) { in tcx_update_display()
239 tcx_draw_line32(ts, d, s, ts->width); in tcx_update_display()
240 if (y >= ts->cursy && y < ts->cursy + 32 && ts->cursx < ts->width) { in tcx_update_display()
241 tcx_draw_cursor32(ts, d, y, ts->width); in tcx_update_display()
246 dpy_gfx_update(ts->con, 0, y_start, in tcx_update_display()
247 ts->width, y - y_start); in tcx_update_display()
256 dpy_gfx_update(ts->con, 0, y_start, in tcx_update_display()
257 ts->width, y - y_start); in tcx_update_display()
264 TCXState *ts = opaque; in tcx24_update_display() local
265 DisplaySurface *surface = qemu_console_surface(ts->con); in tcx24_update_display()
277 s = ts->vram; in tcx24_update_display()
278 s24 = ts->vram24; in tcx24_update_display()
279 cptr = ts->cplane; in tcx24_update_display()
283 snap = memory_region_snapshot_and_clear_dirty(&ts->vram_mem, 0x0, in tcx24_update_display()
284 memory_region_size(&ts->vram_mem), in tcx24_update_display()
287 for (y = 0; y < ts->height; y++, page += ds) { in tcx24_update_display()
288 if (tcx_check_dirty(ts, snap, page, ds)) { in tcx24_update_display()
292 tcx24_draw_line32(ts, d, s, ts->width, cptr, s24); in tcx24_update_display()
293 if (y >= ts->cursy && y < ts->cursy+32 && ts->cursx < ts->width) { in tcx24_update_display()
294 tcx_draw_cursor32(ts, d, y, ts->width); in tcx24_update_display()
299 dpy_gfx_update(ts->con, 0, y_start, in tcx24_update_display()
300 ts->width, y - y_start); in tcx24_update_display()
311 dpy_gfx_update(ts->con, 0, y_start, in tcx24_update_display()
312 ts->width, y - y_start); in tcx24_update_display()