mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
11 lines
196 B
Go
11 lines
196 B
Go
|
package graphics
|
||
|
|
||
|
import (
|
||
|
"image"
|
||
|
)
|
||
|
|
||
|
type TextureFactory interface {
|
||
|
CreateRenderTarget(width, height int) (RenderTargetId, error)
|
||
|
CreateTextureFromImage(img image.Image) (TextureId, error)
|
||
|
}
|