mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
text/v2: remove Metadata.Monospace
Apparently calculating to detection whether a face is monospace or not is pretty heavy as this might iterate all the glyphs.
This commit is contained in:
parent
8777d2c529
commit
2bad1b928f
@ -25,17 +25,15 @@ type Metadata struct {
|
||||
Style Style
|
||||
Weight Weight
|
||||
Stretch Stretch
|
||||
Monospace bool
|
||||
}
|
||||
|
||||
func metadataFromLoader(l *loader.Loader) Metadata {
|
||||
d := metadata.Metadata(l)
|
||||
f, a, _ := metadata.Describe(l, nil)
|
||||
return Metadata{
|
||||
Family: d.Family,
|
||||
Style: Style(d.Aspect.Style),
|
||||
Weight: Weight(d.Aspect.Weight),
|
||||
Stretch: Stretch(d.Aspect.Stretch),
|
||||
Monospace: d.IsMonospace,
|
||||
Family: f,
|
||||
Style: Style(a.Style),
|
||||
Weight: Weight(a.Weight),
|
||||
Stretch: Stretch(a.Stretch),
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user