add note about not destroying face.Face to Atlas doc
This commit is contained in:
parent
ef5de4c8c3
commit
e1f364e5d1
|
@ -30,6 +30,8 @@ type Atlas struct {
|
||||||
|
|
||||||
// NewAtlas creates a new Atlas containing glyphs of the given set of runes from the given font
|
// NewAtlas creates a new Atlas containing glyphs of the given set of runes from the given font
|
||||||
// face.
|
// face.
|
||||||
|
//
|
||||||
|
// Do not destroy or close the font.Face after creating the Atlas.
|
||||||
func NewAtlas(face font.Face, runes []rune) *Atlas {
|
func NewAtlas(face font.Face, runes []rune) *Atlas {
|
||||||
fixedMapping, fixedBounds := makeSquareMapping(face, runes, fixed.I(2))
|
fixedMapping, fixedBounds := makeSquareMapping(face, runes, fixed.I(2))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue