blob: bb73d84eccaaab02160c97cc6abd2c57408db97f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package com.jogamp.opengl.test.bugs;
public class Issue344Test3 extends Issue344Base {
protected String getText() {
// test 3 - slight rendering artifacts around very large letters
return "abcde";
}
public static void main(String[] args) {
new Issue344Test3().run(args);
}
}
|