diff options
| author | BALATON Zoltan <balaton@eik.bme.hu> | 2012-11-03 12:47:08 +0100 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2012-11-03 13:26:54 +0000 |
| commit | b51d7b2e10564aedc83513d3961a69f22509eaa9 (patch) | |
| tree | 387492e24df89c4643466815d7004e7f0654e067 /hw/vga.c | |
| parent | 5b9575c8b7873dee4ab233e065888bbce6dfbaa8 (diff) | |
| download | focaccia-qemu-b51d7b2e10564aedc83513d3961a69f22509eaa9.tar.gz focaccia-qemu-b51d7b2e10564aedc83513d3961a69f22509eaa9.zip | |
vmware_vga: Allow simple drivers to work without using the fifo
Postpone stopping the dirty log to the point where the command fifo is configured to allow drivers which don't use the fifo to work too. (Without this the picture rendered into the vram never got to the screen and the DIRECT_VRAM option meant to support this case was removed a year ago.) Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/vga.c')
| -rw-r--r-- | hw/vga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vga.c b/hw/vga.c index 023134ef68..81aa76bef9 100644 --- a/hw/vga.c +++ b/hw/vga.c @@ -1616,7 +1616,7 @@ void vga_invalidate_scanlines(VGACommonState *s, int y1, int y2) } } -static void vga_sync_dirty_bitmap(VGACommonState *s) +void vga_sync_dirty_bitmap(VGACommonState *s) { memory_region_sync_dirty_bitmap(&s->vram); } |