summaryrefslogtreecommitdiffstats
path: root/src/demos/com
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/com')
-rw-r--r--src/demos/com/jogamp/opengl/demos/graph/ui/FontView01.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demos/com/jogamp/opengl/demos/graph/ui/FontView01.java b/src/demos/com/jogamp/opengl/demos/graph/ui/FontView01.java
index 86869b5a6..8803fbf14 100644
--- a/src/demos/com/jogamp/opengl/demos/graph/ui/FontView01.java
+++ b/src/demos/com/jogamp/opengl/demos/graph/ui/FontView01.java
@@ -288,7 +288,7 @@ public class FontView01 {
static String getGlyphInfo(final char symbol, final Font.Glyph g) {
final OutlineShape os = g.getShape();
- final int osVertices = null != os ? os.getOutlineVectexCount() : 0;
+ final int osVertices = null != os ? os.getVertexCount() : 0;
final String ws = g.isWhiteSpace() ? ", ws" : "";
return String.format((Locale)null, "%s%nHeight: %1.3f%nLine Height: %1.3f%n%nSymbol: 0x%s, id 0x%s%s%nName: %s%nDim %1.3f x %1.3f%nAdvance %1.3f%nLS Bearings: %1.3f%nVertices: %d%n ",
g.getFont().getFullFamilyName(),