summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/golang/freetype/truetype/glyph.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/golang/freetype/truetype/glyph.go')
-rw-r--r--vendor/github.com/golang/freetype/truetype/glyph.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/vendor/github.com/golang/freetype/truetype/glyph.go b/vendor/github.com/golang/freetype/truetype/glyph.go
index c2935a58e..6157ad83e 100644
--- a/vendor/github.com/golang/freetype/truetype/glyph.go
+++ b/vendor/github.com/golang/freetype/truetype/glyph.go
@@ -209,6 +209,7 @@ func (g *GlyphBuf) load(recursion uint32, i Index, useMyMetrics bool) (err error
g.addPhantomsAndScale(len(g.Points), len(g.Points), true, true)
copy(g.phantomPoints[:], g.Points[len(g.Points)-4:])
g.Points = g.Points[:len(g.Points)-4]
+ // TODO: also trim g.InFontUnits and g.Unhinted?
return nil
}
@@ -282,6 +283,10 @@ func (g *GlyphBuf) loadSimple(glyf []byte, ne int) (program []byte) {
program = glyf[offset : offset+instrLen]
offset += instrLen
+ if ne == 0 {
+ return program
+ }
+
np0 := len(g.Points)
np1 := np0 + int(g.Ends[len(g.Ends)-1])