mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-26 11:48:55 +01:00
graphics: Dispose mipmap images for the offscreen every frame
This commit is contained in:
parent
20c8d7317c
commit
c720c8e1cb
@ -92,6 +92,7 @@ func (c *graphicsContext) Update(afterFrameUpdate func()) error {
|
|||||||
}
|
}
|
||||||
for i := 0; i < updateCount; i++ {
|
for i := 0; i < updateCount; i++ {
|
||||||
c.offscreen.fill(0, 0, 0, 0)
|
c.offscreen.fill(0, 0, 0, 0)
|
||||||
|
c.offscreen.disposeMipmaps()
|
||||||
|
|
||||||
setDrawingSkipped(i < updateCount-1)
|
setDrawingSkipped(i < updateCount-1)
|
||||||
if err := hooks.RunBeforeUpdateHooks(); err != nil {
|
if err := hooks.RunBeforeUpdateHooks(); err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user