Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1226)

Unified Diff: freetype/truetype/glyph.go

Issue 34700043: code review 34700043: freetype/truetype: load vertical metrics from the OS/2 ... (Closed)
Patch Set: diff -r 5c5f2cbdf93a https://code.google.com/p/freetype-go Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | freetype/truetype/truetype.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: freetype/truetype/glyph.go
===================================================================
--- a/freetype/truetype/glyph.go
+++ b/freetype/truetype/glyph.go
@@ -377,12 +377,12 @@
func (g *GlyphBuf) addPhantomsAndScale(b Bounds, uhm HMetric, i Index, np0 int, simple bool) {
// Add the four phantom points.
- uvm := g.font.unscaledVMetric(i)
+ uvm := g.font.unscaledVMetric(i, b.YMax)
g.Point = append(g.Point,
Point{X: b.XMin - uhm.LeftSideBearing},
Point{X: b.XMin - uhm.LeftSideBearing + uhm.AdvanceWidth},
- Point{Y: b.YMax + uvm.TopSideBearing},
- Point{Y: b.YMax + uvm.TopSideBearing - uvm.AdvanceHeight},
+ Point{X: uhm.AdvanceWidth / 2, Y: b.YMax + uvm.TopSideBearing},
+ Point{X: uhm.AdvanceWidth / 2, Y: b.YMax + uvm.TopSideBearing - uvm.AdvanceHeight},
)
// Scale the points.
if simple && g.hinter != nil {
« no previous file with comments | « no previous file | freetype/truetype/truetype.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b