diff options
author | Sven Gothel <[email protected]> | 2011-03-25 22:57:35 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-03-25 22:57:35 +0100 |
commit | a32d0c2b5a584be99f9e18d0c070cda8cfc18864 (patch) | |
tree | f5ee1c3992f2f0c8a9c35356e4e59e7560adfe04 | |
parent | 3802ffdb0a5bc84978303e342c8729ca3ba819c9 (diff) |
TextDemo01 (MSAA): 4 samples
-rw-r--r-- | src/demo/GPUTextNewtDemo01.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demo/GPUTextNewtDemo01.java b/src/demo/GPUTextNewtDemo01.java index f8792987c..d31920294 100644 --- a/src/demo/GPUTextNewtDemo01.java +++ b/src/demo/GPUTextNewtDemo01.java @@ -69,8 +69,8 @@ class TextNewtWindow1 { GLProfile glp = GLProfile.getGL2ES2(); GLCapabilities caps = new GLCapabilities(glp); caps.setAlphaBits(4); - caps.setSampleBuffers(true); // FIXME: sure ? - caps.setNumSamples(1); // FIXME: sure ? + caps.setSampleBuffers(true); + caps.setNumSamples(2); // 2 samples is not enough .. System.out.println("Requested: "+caps); final GLWindow window = GLWindow.create(caps); |