mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-01-12 03:58:55 +01:00
pixels: Remove IsStale
This commit is contained in:
parent
56732d9a23
commit
e0894879f1
@ -194,10 +194,7 @@ func (i *imageImpl) ensurePixels(context *opengl.Context) error {
|
|||||||
if i.disposed {
|
if i.disposed {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if !i.pixels.IsStale() {
|
if err := i.pixels.ResetIfStale(context); err != nil {
|
||||||
return nil
|
|
||||||
}
|
|
||||||
if err := i.pixels.Reset(context); err != nil {
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
@ -47,10 +47,6 @@ func NewPixels(image *graphics.Image) *Pixels {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *Pixels) IsStale() bool {
|
|
||||||
return p.stale
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *Pixels) MakeStale() {
|
func (p *Pixels) MakeStale() {
|
||||||
p.basePixels = nil
|
p.basePixels = nil
|
||||||
p.baseColor = nil
|
p.baseColor = nil
|
||||||
@ -134,6 +130,13 @@ func (p *Pixels) Reset(context *opengl.Context) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *Pixels) ResetIfStale(context *opengl.Context) error {
|
||||||
|
if !p.stale {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return p.Reset(context)
|
||||||
|
}
|
||||||
|
|
||||||
func (p *Pixels) HasDependency() bool {
|
func (p *Pixels) HasDependency() bool {
|
||||||
if p.stale {
|
if p.stale {
|
||||||
return false
|
return false
|
||||||
|
Loading…
Reference in New Issue
Block a user