diff options
author | Sven Gothel <[email protected]> | 2023-04-20 21:39:21 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-04-20 21:39:21 +0200 |
commit | a251f5734cc1f5c907f239c3ca3a4f1d4c262058 (patch) | |
tree | fe485e886202b6f424d622d93d38cc2d71aa46b2 /src/jogl/classes/jogamp/graph | |
parent | 97751b036e945fc3afe5e46a6a0b5f96d2b9698b (diff) |
Graph OutlineShape.get{Outline->}VectexCount() renamed
Diffstat (limited to 'src/jogl/classes/jogamp/graph')
-rw-r--r-- | src/jogl/classes/jogamp/graph/font/typecast/TypecastFont.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/graph/font/typecast/TypecastFont.java b/src/jogl/classes/jogamp/graph/font/typecast/TypecastFont.java index 7cf520bf3..ce490bdf0 100644 --- a/src/jogl/classes/jogamp/graph/font/typecast/TypecastFont.java +++ b/src/jogl/classes/jogamp/graph/font/typecast/TypecastFont.java @@ -214,7 +214,7 @@ class TypecastFont implements Font { glyph_leftsidebearings = glyph.getLeftSideBearing(); final AABBox sb = glyph.getBBox(); final OutlineShape s = TypecastRenderer.buildShape(metrics.getUnitsPerEM(), glyph); - if( 0 < s.getOutlineVectexCount() ) { + if( 0 < s.getVertexCount() ) { glyph_bbox = sb; shape = s; isWhiteSpace = false; |