diff options
author | Sven Gothel <[email protected]> | 2011-03-26 12:55:39 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-03-26 12:55:39 +0100 |
commit | ae00fd949a08340a1dd291d7f3e5d800feb1af46 (patch) | |
tree | f3d04ede03cc03f0b4d796b622e6a22b8dae1358 | |
parent | 654c2bfbfcfb00b5ffe67e2490cebbfa267049e4 (diff) |
demo: add numbers to rendering text
-rw-r--r-- | src/demo/GPUTextGLListenerBase01.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demo/GPUTextGLListenerBase01.java b/src/demo/GPUTextGLListenerBase01.java index afdec1220..8d4232ef9 100644 --- a/src/demo/GPUTextGLListenerBase01.java +++ b/src/demo/GPUTextGLListenerBase01.java @@ -66,7 +66,7 @@ public abstract class GPUTextGLListenerBase01 implements GLEventListener { static final String text2; static { - text1 = "abcdef\nghijklmn\nopqrstuv\nwxyz"; // \n0123456789"; + text1 = "abcdef\nghijklmn\nopqrstuv\nwxyz\n0123456789"; text2 = text1.toUpperCase(); } |