mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-26 11:48:55 +01:00
text/v2: update comments
This commit is contained in:
parent
9c070eb2f3
commit
85c0f4444b
@ -36,6 +36,10 @@ var _ Face = (*GoTextFace)(nil)
|
|||||||
// GoTextFace is a Face implementation for go-text's font.Face (github.com/go-text/typesetting).
|
// GoTextFace is a Face implementation for go-text's font.Face (github.com/go-text/typesetting).
|
||||||
// With a GoTextFace, shaping.HarfBuzzShaper is always used as a shaper internally.
|
// With a GoTextFace, shaping.HarfBuzzShaper is always used as a shaper internally.
|
||||||
// GoTextFace includes the source and various options.
|
// GoTextFace includes the source and various options.
|
||||||
|
//
|
||||||
|
// Unlike GoXFace, one GoTextFace instance doesn't have its own glyph image cache.
|
||||||
|
// Instead, a GoTextFaceSource has a glyph image cache.
|
||||||
|
// You can casually create multiple GoTextFace instances from the same GoTextFaceSource.
|
||||||
type GoTextFace struct {
|
type GoTextFace struct {
|
||||||
// Source is the font face source.
|
// Source is the font face source.
|
||||||
Source *GoTextFaceSource
|
Source *GoTextFaceSource
|
||||||
|
@ -37,6 +37,9 @@ type goXFaceGlyphImageCacheKey struct {
|
|||||||
// GoXFace is a Face implementation for a semi-standard font.Face (golang.org/x/image/font).
|
// GoXFace is a Face implementation for a semi-standard font.Face (golang.org/x/image/font).
|
||||||
// GoXFace is useful to transit from existing codebase with text v1, or to use some bitmap fonts defined as font.Face.
|
// GoXFace is useful to transit from existing codebase with text v1, or to use some bitmap fonts defined as font.Face.
|
||||||
// GoXFace must not be copied by value.
|
// GoXFace must not be copied by value.
|
||||||
|
//
|
||||||
|
// Unlike GoFontFace, one GoXFace instance has its own glyph image cache.
|
||||||
|
// You should reuse the same GoXFace instance as much as possible.
|
||||||
type GoXFace struct {
|
type GoXFace struct {
|
||||||
f *faceWithCache
|
f *faceWithCache
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user