add drawlist size debug
This commit is contained in:
parent
7af49d0787
commit
0926d3fc01
1 changed files with 7 additions and 0 deletions
|
@ -14,6 +14,7 @@ import (
|
|||
|
||||
"drjosh.dev/gurgle/geom"
|
||||
"github.com/hajimehoshi/ebiten/v2"
|
||||
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
|
||||
)
|
||||
|
||||
var _ interface {
|
||||
|
@ -110,6 +111,12 @@ func (g *Game) Draw(screen *ebiten.Image) {
|
|||
}
|
||||
d.Draw(screen, &st.opts)
|
||||
}
|
||||
|
||||
if true {
|
||||
// Infodump about draw list
|
||||
ebitenutil.DebugPrintAt(screen, fmt.Sprintf("len(drawList.list) = %d", len(g.drawList.list)), 0, 30)
|
||||
ebitenutil.DebugPrintAt(screen, fmt.Sprintf("len(drawList.rev) = %d", len(g.drawList.list)), 0, 45)
|
||||
}
|
||||
}
|
||||
|
||||
// Layout returns the configured screen width/height.
|
||||
|
|
Loading…
Reference in a new issue