diff options
author | Sven Gothel <[email protected]> | 2011-03-25 22:59:12 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-03-25 22:59:12 +0100 |
commit | 0976b895fd595ca29c6854ee4cfd9c402e9d27e6 (patch) | |
tree | eaf053cc1ff5fa6b56fef37195af8f7688e696ba | |
parent | a32d0c2b5a584be99f9e18d0c070cda8cfc18864 (diff) |
TextDemo01 (MSAA): 4 samples (duh)
-rw-r--r-- | src/demo/GPUTextNewtDemo01.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demo/GPUTextNewtDemo01.java b/src/demo/GPUTextNewtDemo01.java index d31920294..ce6943463 100644 --- a/src/demo/GPUTextNewtDemo01.java +++ b/src/demo/GPUTextNewtDemo01.java @@ -70,7 +70,7 @@ class TextNewtWindow1 { GLCapabilities caps = new GLCapabilities(glp); caps.setAlphaBits(4); caps.setSampleBuffers(true); - caps.setNumSamples(2); // 2 samples is not enough .. + caps.setNumSamples(4); // 2 samples is not enough .. System.out.println("Requested: "+caps); final GLWindow window = GLWindow.create(caps); |