mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Don't use ds->dpy_copy directly from hw/ (Jan Niehusmann).
I left a TODO in the code because this still doesn't definitely fix all issues. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5308 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
818220f5e9
commit
38334f7630
4 changed files with 21 additions and 6 deletions
13
console.c
13
console.c
|
@ -1343,3 +1343,16 @@ void qemu_console_resize(QEMUConsole *console, int width, int height)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
void qemu_console_copy(QEMUConsole *console, int src_x, int src_y,
|
||||
int dst_x, int dst_y, int w, int h) {
|
||||
if (active_console == console) {
|
||||
if (console->ds->dpy_copy)
|
||||
console->ds->dpy_copy(console->ds,
|
||||
src_x, src_y, dst_x, dst_y, w, h);
|
||||
else {
|
||||
/* TODO */
|
||||
console->ds->dpy_update(console->ds, dst_x, dst_y, w, h);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue