summaryrefslogtreecommitdiffstats
path: root/src/test/com
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-03-25 06:40:08 +0100
committerSven Gothel <[email protected]>2014-03-25 06:40:08 +0100
commitb71f91e67270958bdb2940615a83e4d1ccc9ca0a (patch)
treec60ede14689f3716e80e7805daaa3fdd0591158c /src/test/com
parentb4817d053d7af20dae33774e430bf79a3d3c6fcd (diff)
Bug 801: Elaborate on multisampling performance/quality: Flipquad, RGSS, Quincunx
Using poles only as sampling points is not as effective as: flipquad > rgss >> quincunx Best quality would be 'wholeedge', i.e. average every supersample, however performance is worse here. References: <http://fileadmin.cs.lth.se/graphics/research/papers/inexp_ms2005/> <http://fileadmin.cs.lth.se/graphics/research/papers/masses2003/>
Diffstat (limited to 'src/test/com')
-rw-r--r--src/test/com/jogamp/opengl/test/junit/graph/demos/GPUTextNewtDemo.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/graph/demos/GPUTextNewtDemo.java b/src/test/com/jogamp/opengl/test/junit/graph/demos/GPUTextNewtDemo.java
index 45d7dd343..f63b9b70a 100644
--- a/src/test/com/jogamp/opengl/test/junit/graph/demos/GPUTextNewtDemo.java
+++ b/src/test/com/jogamp/opengl/test/junit/graph/demos/GPUTextNewtDemo.java
@@ -95,7 +95,7 @@ public class GPUTextNewtDemo {
}
System.out.println("Requested: " + caps);
- int rmode = Region.VARIABLE_CURVE_WEIGHT_BIT;
+ int rmode = 0; // Region.VARIABLE_CURVE_WEIGHT_BIT;
int sampleCount = 0;
if( GraphVBAASamples > 0 ) {
rmode |= Region.VBAA_RENDERING_BIT;