aboutsummaryrefslogtreecommitdiffstats
path: root/src/demos/com
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-04-14 18:01:51 +0200
committerSven Gothel <[email protected]>2023-04-14 18:01:51 +0200
commit92764721a1705e68c0dbf2fe77b22ded26e2f9b4 (patch)
tree014f6c475854c36dd1f397c82ea403081e218737 /src/demos/com
parent57fb1fd99b5f0cc08b4e900fb2ce7c4d76351e63 (diff)
GraphUI Demo FontView01: Separate general font metrix (height, line-height) from actual Glyph metrix
Diffstat (limited to 'src/demos/com')
-rw-r--r--src/demos/com/jogamp/opengl/demos/graph/ui/FontView01.java6
1 files changed, 3 insertions, 3 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 cf9330e22..18a6c77d4 100644
--- a/src/demos/com/jogamp/opengl/demos/graph/ui/FontView01.java
+++ b/src/demos/com/jogamp/opengl/demos/graph/ui/FontView01.java
@@ -282,13 +282,13 @@ public class FontView01 {
final OutlineShape os = g.getShape();
final int osVertices = null != os ? os.getOutlineVectexCount() : 0;
final String ws = g.isWhiteSpace() ? ", ws" : "";
- return String.format((Locale)null, "%s%nSymbol: 0x%s, id 0x%s%s%nName: %s%nDim %1.3f x %1.3f%nAdvance %1.3f%nHeight: %1.3f%nLine Height: %1.3f%nLS Bearings: %1.3f%nVertices: %d%n ",
+ 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(),
+ g.getFont().getMetrics().getAscent() - g.getFont().getMetrics().getDescent(), // font hhea table
+ g.getFont().getLineHeight(), // font hhea table
Integer.toHexString(symbol), Integer.toHexString(g.getID()), ws, g.getName(),
g.getBounds().getWidth(), g.getBounds().getHeight(),
g.getAdvance(),
- g.getFont().getMetrics().getAscent() - g.getFont().getMetrics().getDescent(),
- g.getFont().getLineHeight(),
g.getLeftSideBearings(),
osVertices );
}