mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-26 03:38:55 +01:00
graphics: Clear volatile images at the start of a frame
This commit is contained in:
parent
1fdfa5707a
commit
c7783b2ecf
@ -128,7 +128,8 @@ func (c *graphicsContext) UpdateAndDraw(context *opengl.Context, updateCount int
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
for i := 0; i < updateCount; i++ {
|
for i := 0; i < updateCount; i++ {
|
||||||
if err := c.offscreen.Clear(); err != nil {
|
// TODO: This clears images not needed to be cleared (e.g. c.screen).
|
||||||
|
if err := theImagesForRestoring.clearVolatileImages(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
setRunningSlowly(i < updateCount-1)
|
setRunningSlowly(i < updateCount-1)
|
||||||
|
16
image.go
16
image.go
@ -81,6 +81,17 @@ func (i *images) restore(context *opengl.Context) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (i *images) clearVolatileImages() error {
|
||||||
|
i.m.Lock()
|
||||||
|
defer i.m.Unlock()
|
||||||
|
for img := range i.images {
|
||||||
|
if err := img.clearIfVolatile(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// Image represents an image.
|
// Image represents an image.
|
||||||
// The pixel format is alpha-premultiplied.
|
// The pixel format is alpha-premultiplied.
|
||||||
// Image implements image.Image.
|
// Image implements image.Image.
|
||||||
@ -209,14 +220,13 @@ func NewImage(width, height int, filter Filter) (*Image, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NewVolatileImage returns an empty 'volatile' image.
|
// NewVolatileImage returns an empty 'volatile' image.
|
||||||
// A volatile image is an image that pixels might be lost at another frame.
|
// A volatile image is always cleared at the start of a frame.
|
||||||
//
|
//
|
||||||
// This is suitable for offscreen images that pixels are changed often.
|
// This is suitable for offscreen images that pixels are changed often.
|
||||||
//
|
//
|
||||||
// Pixels in regular non-volatile images are saved at each end of a frame if the image
|
// Pixels in regular non-volatile images are saved at each end of a frame if the image
|
||||||
// is changed, and restored automatically from the saved pixels on GL context lost.
|
// is changed, and restored automatically from the saved pixels on GL context lost.
|
||||||
// On the other hand, pixels in volatile images are not saved and can be lost
|
// On the other hand, pixels in volatile images are not saved.
|
||||||
// on GL context lost.
|
|
||||||
// Saving pixels is an expensive operation, and it is desirable to avoid it if possible.
|
// Saving pixels is an expensive operation, and it is desirable to avoid it if possible.
|
||||||
//
|
//
|
||||||
// This function is concurrent-safe.
|
// This function is concurrent-safe.
|
||||||
|
13
imageimpl.go
13
imageimpl.go
@ -115,6 +115,19 @@ func (i *imageImpl) Fill(clr color.Color) error {
|
|||||||
return i.image.Fill(clr)
|
return i.image.Fill(clr)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (i *imageImpl) clearIfVolatile() error {
|
||||||
|
i.m.Lock()
|
||||||
|
defer i.m.Unlock()
|
||||||
|
if i.disposed {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if !i.volatile {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
i.pixels = nil
|
||||||
|
return i.image.Fill(color.Transparent)
|
||||||
|
}
|
||||||
|
|
||||||
func (i *imageImpl) DrawImage(image *Image, options *DrawImageOptions) error {
|
func (i *imageImpl) DrawImage(image *Image, options *DrawImageOptions) error {
|
||||||
// Calculate vertices before locking because the user can do anything in
|
// Calculate vertices before locking because the user can do anything in
|
||||||
// options.ImageParts interface without deadlock (e.g. Call Image functions).
|
// options.ImageParts interface without deadlock (e.g. Call Image functions).
|
||||||
|
Loading…
Reference in New Issue
Block a user