mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-02-03 06:24:27 +01:00
graphics: Remove an unused member
This commit is contained in:
parent
0f450fb1e2
commit
d398cb14c2
@ -33,7 +33,6 @@ type graphicsContext struct {
|
|||||||
offscreen *Image
|
offscreen *Image
|
||||||
offscreen2 *Image // TODO: better name
|
offscreen2 *Image // TODO: better name
|
||||||
screen *Image
|
screen *Image
|
||||||
screenScale float64
|
|
||||||
initialized bool
|
initialized bool
|
||||||
invalidated bool // browser only
|
invalidated bool // browser only
|
||||||
}
|
}
|
||||||
@ -71,7 +70,6 @@ func (c *graphicsContext) SetSize(screenWidth, screenHeight int, screenScale flo
|
|||||||
|
|
||||||
c.offscreen = offscreen
|
c.offscreen = offscreen
|
||||||
c.offscreen2 = offscreen2
|
c.offscreen2 = offscreen2
|
||||||
c.screenScale = screenScale
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *graphicsContext) initializeIfNeeded() error {
|
func (c *graphicsContext) initializeIfNeeded() error {
|
||||||
|
Loading…
Reference in New Issue
Block a user