aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-03-28 02:39:49 +0200
committerSven Gothel <[email protected]>2023-03-28 02:39:49 +0200
commitf7125f6bb2db418064a170ae42466e13b8f51f70 (patch)
tree324e849e3fe4fc8d7089665d407b12aaf55b5432 /src/jogl/classes/jogamp
parent143b67f063d4a3a0f51806355bca23ef4dc0dc3b (diff)
Graph Font.Glyph: Add getFont() (the owner)
Diffstat (limited to 'src/jogl/classes/jogamp')
-rw-r--r--src/jogl/classes/jogamp/graph/font/typecast/TypecastGlyph.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/jogl/classes/jogamp/graph/font/typecast/TypecastGlyph.java b/src/jogl/classes/jogamp/graph/font/typecast/TypecastGlyph.java
index d62314e8d..6747cca82 100644
--- a/src/jogl/classes/jogamp/graph/font/typecast/TypecastGlyph.java
+++ b/src/jogl/classes/jogamp/graph/font/typecast/TypecastGlyph.java
@@ -128,6 +128,11 @@ public final class TypecastGlyph implements Font.Glyph {
}
@Override
+ public Font getFont() {
+ return font;
+ }
+
+ @Override
public final int getID() { return id; }
@Override