mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
graphics: Don't update the screen when not necessary
This commit is contained in:
parent
0469ef386b
commit
b62df75e36
@ -118,9 +118,9 @@ func (c *graphicsContext) Update(afterFrameUpdate func()) error {
|
||||
}
|
||||
if 0 < updateCount {
|
||||
drawWithFittingScale(c.offscreen2, c.offscreen)
|
||||
_ = c.screen.Clear()
|
||||
drawWithFittingScale(c.screen, c.offscreen2)
|
||||
}
|
||||
_ = c.screen.Clear()
|
||||
drawWithFittingScale(c.screen, c.offscreen2)
|
||||
|
||||
if err := restorable.ResolveStaleImages(); err != nil {
|
||||
return err
|
||||
|
Loading…
Reference in New Issue
Block a user