mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-01-26 02:42:02 +01:00
graphics: Rename restorePixels -> restore
This commit is contained in:
parent
7e296b1aae
commit
793aad2681
@ -162,7 +162,7 @@ func (c *graphicsContext) restore(context *opengl.Context) error {
|
|||||||
if err := graphics.Reset(context); err != nil {
|
if err := graphics.Reset(context); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := theImagesForRestoring.restorePixels(context); err != nil {
|
if err := theImagesForRestoring.restore(context); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
4
image.go
4
image.go
@ -60,7 +60,7 @@ func (i *images) savePixels(context *opengl.Context) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *images) restorePixels(context *opengl.Context) error {
|
func (i *images) restore(context *opengl.Context) error {
|
||||||
i.m.Lock()
|
i.m.Lock()
|
||||||
defer i.m.Unlock()
|
defer i.m.Unlock()
|
||||||
// Dispose all images first because framebuffer/texture numbers can be reused.
|
// Dispose all images first because framebuffer/texture numbers can be reused.
|
||||||
@ -75,7 +75,7 @@ func (i *images) restorePixels(context *opengl.Context) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
for img := range i.images {
|
for img := range i.images {
|
||||||
if err := img.restorePixels(); err != nil {
|
if err := img.restore(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -193,7 +193,7 @@ func (i *imageImpl) savePixels(context *opengl.Context) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *imageImpl) restorePixels() error {
|
func (i *imageImpl) restore() error {
|
||||||
i.m.Lock()
|
i.m.Lock()
|
||||||
defer i.m.Unlock()
|
defer i.m.Unlock()
|
||||||
if i.disposed {
|
if i.disposed {
|
||||||
|
Loading…
Reference in New Issue
Block a user