System no longer requires a NewCanvas method

This commit is contained in:
2024-06-03 20:44:58 -04:00
parent 0d93d73c32
commit c51ce65c88
2 changed files with 0 additions and 6 deletions

View File

@@ -15,8 +15,6 @@ type System struct {
type BackendLink interface {
// NewTexture creates a new texture from an image.
NewTexture (image.Image) canvas.TextureCloser
// NewCanvas creates a new blank canvas with the specified bounds.
NewCanvas (image.Rectangle) canvas.Canvas
// NewSurface creates a new surface with the specified bounds.
NewSurface (image.Rectangle) (SurfaceLink, error)
}