JOGL v2.6.0-rc-20250712
JOGL, High-Performance Graphics Binding for Java™ (public API).
Issue344Test1.java
Go to the documentation of this file.
1package com.jogamp.opengl.test.bugs;
2
3public class Issue344Test1 extends Issue344Base {
4 protected String getText() {
5 // test 1 - weird artifacts appear with a large font & long string
6 return "abcdefghijklmnopqrstuvwxyz1234567890";
7 }
8
9 public static void main(final String[] args) {
10 new Issue344Test1().run(args);
11 }
12}
Test Code adapted from TextCube.java (in JOGL demos)
static void main(final String[] args)