Documentation ¶
Overview ¶
Package restorable offers an Image struct that stores image commands and restores its pixel data from the commands when context lost happens.
When a function like DrawImage or Fill is called, an Image tries to record the information for restoring.
* Context lost
Contest lost is a process that information on GPU memory are removed by OS to make more room on GPU memory. This can happen e.g. when GPU memory usage is high, or just switching applications might cause context lost on mobiles. As Ebiten's image data is on GPU memory, the game can't continue when context lost happens without restoring image information. The package restorable is the package to record information for such restoring.
* DrawImage
DrawImage function tries to record an item of 'draw image history' in the target image. If a target image is stale or volatile, no item is created. If an item of the history is created, it can be said that the target image depends on the source image. In other words, If A.DrawImage(B, ...) is called, it can be said that the image A depends on the image B.
* Fill, ReplacePixels and Dispose
These functions are also drawing functions and the target image stores the pixel data instead of draw image history items. There is no dependency here.
* Making images stale
After any of the drawing functions is called, the target image can't be depended on by any other images. For example, if an image A depends on an image B, and B is changed by a Fill call after that, the image A can't depend on the image B any more. In this case, as the image B can no longer be used to restore the image A, the image A becomes 'stale'. As all the stale images are resolved before context lost happens, draw image history items are kept as they are (even if an image C depends on the stale image A, it is still fine).
* Stale image
A stale image is an image that can't be restored from the recorded information. All stale images must be resolved by reading pixels from GPU before the frame ends. If a source image of DrawImage is a stale image, the target always becomes stale.
* Volatile image
A volatile image is a special image that is always cleared when a frame starts. For instance, the game screen passed via the update function is a volatile image. A volatile image doesn't have to record the drawing history. If a source image of DrawImage is a volatile image, the target always becomes stale.
Index ¶
- func EnableRestoringForTesting()
- func Error() error
- func Images() []image.Image
- func InitializeGraphicsDriverState() error
- func IsRestoringEnabled() bool
- func ResolveStaleImages()
- func Restore() error
- type Image
- func (i *Image) At(x, y int) (byte, byte, byte, byte)
- func (i *Image) BasePixelsForTesting() *Pixels
- func (i *Image) CopyPixels(src *Image)
- func (i *Image) Dispose()
- func (i *Image) DrawImage(img *Image, vertices []float32, indices []uint16, colorm *affine.ColorM, ...)
- func (i *Image) Fill(r, g, b, a uint8)
- func (i *Image) IsInvalidated() (bool, error)
- func (i *Image) IsVolatile() bool
- func (i *Image) MakeVolatile()
- func (i *Image) PutVertex(vs []float32, dx, dy, sx, sy float32, bx0, by0, bx1, by1 float32, ...)
- func (i *Image) QuadVertices(sx0, sy0, sx1, sy1 int, a, b, c, d, tx, ty float32, cr, cg, cb, ca float32) []float32
- func (i *Image) ReplacePixels(pixels []byte, x, y, width, height int)
- func (i *Image) Size() (int, int)
- type Pixels
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func EnableRestoringForTesting ¶ added in v1.6.0
func EnableRestoringForTesting()
EnableRestoringForTesting forces to enable restoring for testing.
func InitializeGraphicsDriverState ¶ added in v1.9.0
func InitializeGraphicsDriverState() error
InitializeGraphicsDriverState initializes the graphics driver state.
func IsRestoringEnabled ¶ added in v1.6.0
func IsRestoringEnabled() bool
IsRestoringEnabled returns a boolean value indicating whether restoring process works or not.
func ResolveStaleImages ¶ added in v1.6.0
func ResolveStaleImages()
ResolveStaleImages flushes the queued draw commands and resolves all stale images.
ResolveStaleImages is intended to be called at the end of a frame.
Types ¶
type Image ¶
type Image struct {
// contains filtered or unexported fields
}
Image represents an image that can be restored when GL context is lost.
func NewImage ¶
NewImage creates an empty image with the given size.
The returned image is cleared.
Note that Dispose is not called automatically.
func NewScreenFramebufferImage ¶
NewScreenFramebufferImage creates a special image that framebuffer is one for the screen.
The returned image is cleared.
Note that Dispose is not called automatically.
func (*Image) At ¶
At returns a color value at (x, y).
Note that this must not be called until context is available.
func (*Image) BasePixelsForTesting ¶
BasePixelsForTesting returns the image's basePixels for testing.
func (*Image) CopyPixels ¶ added in v1.9.0
func (*Image) Dispose ¶
func (i *Image) Dispose()
Dispose disposes the image.
After disposing, calling the function of the image causes unexpected results.
func (*Image) DrawImage ¶
func (i *Image) DrawImage(img *Image, vertices []float32, indices []uint16, colorm *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, address graphics.Address)
DrawImage draws a given image img to the image.
func (*Image) IsInvalidated ¶
IsInvalidated returns a boolean value indicating whether the image is invalidated.
If an image is invalidated, GL context is lost and all the images should be restored asap.
func (*Image) IsVolatile ¶ added in v1.8.0
func (*Image) MakeVolatile ¶ added in v1.9.0
func (i *Image) MakeVolatile()
func (*Image) QuadVertices ¶ added in v1.9.0
func (*Image) ReplacePixels ¶
ReplacePixels replaces the image pixels with the given pixels slice.
If pixels is nil, ReplacePixels clears the specified reagion.