zntg/ui/texture.go

12 lines
215 B
Go
Raw Normal View History

package ui
import "opslag.de/schobers/geom"
2020-05-12 21:03:43 +00:00
type Texture interface {
Destroy() error
Height() float32
Width() float32
}
func SizeOfTexture(t Texture) geom.PointF32 { return geom.PtF32(t.Width(), t.Height()) }