diff options
author | Sven Gothel <[email protected]> | 2023-08-28 23:12:38 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-08-28 23:12:38 +0200 |
commit | f66947ef42fa827dafd359061d3b60efe4c7e432 (patch) | |
tree | 78565e0a14881a6d92866a83320afe09f3418c8d | |
parent | 7fd51917b0cc85c3dc3d07592093a62b213d1ea5 (diff) |
Graph Font: Make TypecastRenderer.DEBUG package private to be used by TypecastFont
-rw-r--r-- | src/jogl/classes/jogamp/graph/font/typecast/TypecastRenderer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/graph/font/typecast/TypecastRenderer.java b/src/jogl/classes/jogamp/graph/font/typecast/TypecastRenderer.java index 3aa9a1c12..816be92b2 100644 --- a/src/jogl/classes/jogamp/graph/font/typecast/TypecastRenderer.java +++ b/src/jogl/classes/jogamp/graph/font/typecast/TypecastRenderer.java @@ -56,7 +56,7 @@ import com.jogamp.opengl.math.geom.AABBox; * http://walon.org/pub/ttf/ttf_glyphs.htm */ public class TypecastRenderer { - private static final boolean DEBUG = Debug.debug("graph.font.Renderer"); + /* pp */ static final boolean DEBUG = Debug.debug("graph.font.Renderer"); private static final boolean PRINT_CODE = Debug.debug("graph.font.Renderer.Code"); private static void addShapeMoveTo(final float unitsPerEM, final OutlineShape shape, final Point p1) { |