change virtio-gpu resolution from 1024x768(qemu-5.2 default res) to 1280x800(qemu-7.0 default res)
This commit is contained in:
parent
f3a5a45b94
commit
35c4055dd0
4 changed files with 5 additions and 5 deletions
|
@ -42,7 +42,7 @@ impl DrawTarget for Graphics {
|
|||
let fb = self.drv.getfreambuffer();
|
||||
|
||||
pixels.into_iter().for_each(|px| {
|
||||
let idx = ((self.point.y + px.0.y) * 1024 + self.point.x + px.0.x) as usize * 4;
|
||||
let idx = ((self.point.y + px.0.y) * 1280 + self.point.x + px.0.x) as usize * 4;
|
||||
if idx + 2 >= fb.len() {
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ impl IconController {
|
|||
UPIntrFreeCell::new(IconControllerInner {
|
||||
files,
|
||||
graphic: Graphics {
|
||||
size: Size::new(1024, 768),
|
||||
size: Size::new(1280, 800),
|
||||
point: Point::new(0, 0),
|
||||
drv: GPU_DEVICE.clone(),
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue