From 192631530503b8046abcfa9b2ca6760e3f39ae66 Mon Sep 17 00:00:00 2001 From: Rami Santina <rami.santina@gmail.com> Date: Tue, 10 May 2011 14:29:12 +0300 Subject: Fix: glyph outline orientation with the removal of inversion --- src/jogl/classes/jogamp/graph/curve/text/GlyphShape.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/jogl/classes/jogamp/graph/curve/text/GlyphShape.java') diff --git a/src/jogl/classes/jogamp/graph/curve/text/GlyphShape.java b/src/jogl/classes/jogamp/graph/curve/text/GlyphShape.java index b6f37a610..b47612f51 100644 --- a/src/jogl/classes/jogamp/graph/curve/text/GlyphShape.java +++ b/src/jogl/classes/jogamp/graph/curve/text/GlyphShape.java @@ -73,7 +73,8 @@ public class GlyphShape { public final Vertex.Factory<? extends Vertex> vertexFactory() { return shape.vertexFactory(); } private void addVertexToLastOutline(Vertex vertex) { - shape.addVertex(vertex); + //FIXME: assuming font outline comes in CW order + shape.addVertex(0, vertex); } private void addOutlineVerticesFromGlyphVector(float[] coords, int segmentType){ -- cgit v1.2.3