restorable

package
v1.7.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 20, 2018 License: Apache-2.0 Imports: 7 Imported by: 0

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

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 Images added in v1.7.0

func Images() ([]image.Image, error)

func InitializeGLState added in v1.6.0

func InitializeGLState() error

InitializeGLState initializes the GL 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() error

ResolveStaleImages flushes the queued draw commands and resolves all stale images.

ResolveStaleImages is intended to be called at the end of a frame.

func Restore

func Restore() error

Restore restores the images.

Restoring means to make all *graphics.Image objects have their textures and framebuffers.

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

func NewImage(width, height int, volatile bool) *Image

NewImage creates an empty image with the given size.

The returned image is cleared.

Note that Dispose is not called automatically.

func NewScreenFramebufferImage

func NewScreenFramebufferImage(width, height int) *Image

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

func (i *Image) At(x, y int) (color.RGBA, error)

At returns a color value at (x, y).

Note that this must not be called until context is available.

func (*Image) BasePixelsForTesting

func (i *Image) BasePixelsForTesting() []byte

BasePixelsForTesting returns the image's basePixels for testing.

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, sx0, sy0, sx1, sy1 int, geom *affine.GeoM, colorm *affine.ColorM, mode opengl.CompositeMode, filter graphics.Filter)

DrawImage draws a given image img to the image.

func (*Image) IsInvalidated

func (i *Image) IsInvalidated() (bool, error)

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) ReplacePixels

func (i *Image) ReplacePixels(pixels []byte, x, y, width, height int)

ReplacePixels replaces the image pixels with the given pixels slice.

If pixels is nil, ReplacePixels clears the specified reagion.

func (*Image) Size

func (i *Image) Size() (int, int)

Size returns the image's size.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL