[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH for-9.0 4/4] vga: do not treat horiz pel panning value of 8 as "e
From: |
Paolo Bonzini |
Subject: |
[PATCH for-9.0 4/4] vga: do not treat horiz pel panning value of 8 as "enabled" |
Date: |
Tue, 2 Apr 2024 13:34:06 +0200 |
Horizontal pel panning bit 3 is only used in text mode. In graphics
mode, it can be treated as if it was zero, thus not extending the
dirty memory region.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
hw/display/vga.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/hw/display/vga.c b/hw/display/vga.c
index 40acd19e72a..77f59e8c113 100644
--- a/hw/display/vga.c
+++ b/hw/display/vga.c
@@ -1571,7 +1571,9 @@ static void vga_draw_graphic(VGACommonState *s, int
full_update)
break;
}
}
- hpel = bits <= 8 ? s->params.hpel : 0;
+
+ /* Horizontal pel panning bit 3 is only used in text mode. */
+ hpel = bits <= 8 ? s->params.hpel & 7 : 0;
region_start = (s->params.start_addr * 4);
region_end = region_start + (ram_addr_t)s->params.line_offset * height;
--
2.44.0
- [PATCH for-9.0 0/4] vga: fix assertion failure with 4- and 16-color modes, Paolo Bonzini, 2024/04/02
- [PATCH for-9.0 1/4] vga: merge conditionals on shift control register, Paolo Bonzini, 2024/04/02
- [PATCH for-9.0 2/4] vga: move computation of dirty memory region later, Paolo Bonzini, 2024/04/02
- [PATCH for-9.0 4/4] vga: do not treat horiz pel panning value of 8 as "enabled",
Paolo Bonzini <=
- [PATCH for-9.0 3/4] vga: adjust dirty memory region if pel panning is active, Paolo Bonzini, 2024/04/02
- [PATCH for-9.1 5/4] vga: optimize computation of dirty memory region, Paolo Bonzini, 2024/04/02
- [PATCH for-9.1 6/4] vga: move dirty memory region code together, Paolo Bonzini, 2024/04/02