graphicscommand: Add 'address' to (*DrawImageCommand).String

This commit is contained in:
Hajime Hoshi 2019-02-10 14:27:49 +09:00
parent 6f428c584d
commit 8e42484294

View File

@ -220,7 +220,7 @@ type drawImageCommand struct {
} }
func (c *drawImageCommand) String() string { func (c *drawImageCommand) String() string {
return fmt.Sprintf("draw-image: dst: %p <- src: %p, colorm: %v, mode %d, filter: %d", c.dst, c.src, c.color, c.mode, c.filter) return fmt.Sprintf("draw-image: dst: %p <- src: %p, colorm: %v, mode %d, filter: %d, address: %d", c.dst, c.src, c.color, c.mode, c.filter, c.address)
} }
// Exec executes the drawImageCommand. // Exec executes the drawImageCommand.