aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Göthel <[email protected]>2024-01-15 18:35:52 +0100
committerSven Göthel <[email protected]>2024-01-15 18:35:52 +0100
commit7fac6c60d7af8a22a82d6702a3380fee2926b608 (patch)
tree6b71185880d81c40090a3afa2a92d1b9d44670c2 /src
parent447a98a0dcb7add50d77c1d8392e670bffb358ec (diff)
GraphUI Demo FontView01: Remove using jogamp.graph.curve.opengl.VBORegion2PVBAAES2 perf-counter hooks (not committed)
Diffstat (limited to 'src')
-rw-r--r--src/demos/com/jogamp/opengl/demos/graph/ui/FontView01.java3
1 files changed, 0 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 646b41884..20ecdb65d 100644
--- a/src/demos/com/jogamp/opengl/demos/graph/ui/FontView01.java
+++ b/src/demos/com/jogamp/opengl/demos/graph/ui/FontView01.java
@@ -363,7 +363,6 @@ public class FontView01 {
final long total = t1 - t0;
final float nsPerGlyph = total / gridDim.glyphCount;
System.err.println("PERF: Total took "+(total/1000000.0)+"ms, per-glyph "+(nsPerGlyph/1000000.0)+"ms, glyphs "+gridDim.glyphCount);
- jogamp.graph.curve.opengl.VBORegion2PVBAAES2.printPerf(System.err);
}
printScreenOnGLThread(scene, window.getChosenGLCapabilities(), font, gridDim.contourChars.get(gridDim.rowStartIndex));
// stay open ..
@@ -416,7 +415,6 @@ public class FontView01 {
final long total = t1 - t0;
final float nsPerGlyph = total / contourChars.size();
System.err.println("PERF: GlyphScan took "+(total/1000000.0)+"ms, per-glyph "+(nsPerGlyph/1000000.0)+"ms, glyphs "+contourChars.size());
- jogamp.graph.curve.opengl.VBORegion2PVBAAES2.printPerf(System.err);
return contourChars.size();
}
@@ -497,7 +495,6 @@ public class FontView01 {
final long total = t1 - t0;
final float nsPerGlyph = total / gridDim.glyphCount;
System.err.println("PERF: GlyphAdd took "+(total/1000000.0)+"ms, per-glyph "+(nsPerGlyph/1000000.0)+"ms, glyphs "+gridDim.glyphCount);
- jogamp.graph.curve.opengl.VBORegion2PVBAAES2.printPerf(System.err);
}
static void addLabel(final Group c, final Font font, final String text) {
c.addShape( new Label(options.renderModes, font, 1f, text).setColor(0, 0, 0, 1).setInteractive(false).setDragAndResizeable(false) );