mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-24 18:58:54 +01:00
graphics: Reduce a space line
This commit is contained in:
parent
e5965d7771
commit
1ccdfd9a35
6
image.go
6
image.go
@ -250,7 +250,6 @@ func (i *imageImpl) Fill(clr color.Color) error {
|
||||
return nil
|
||||
}
|
||||
return f()
|
||||
|
||||
}
|
||||
|
||||
func (i *imageImpl) DrawImage(image *Image, options *DrawImageOptions) error {
|
||||
@ -305,7 +304,10 @@ func (i *imageImpl) DrawImage(image *Image, options *DrawImageOptions) error {
|
||||
}
|
||||
i.pixels = nil
|
||||
mode := opengl.CompositeMode(options.CompositeMode)
|
||||
return i.framebuffer.DrawTexture(ui.GLContext(), image.impl.texture, vertices[:16*n], geom, colorm, mode)
|
||||
if err := i.framebuffer.DrawTexture(ui.GLContext(), image.impl.texture, vertices[:16*n], geom, colorm, mode); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
if theDelayedImageTasks.add(f) {
|
||||
return nil
|
||||
|
Loading…
Reference in New Issue
Block a user