modules/graphics/src/main/java/com/sun/openpisces/Renderer.java

Print this page

        

@@ -152,12 +152,15 @@
 
     private float[] edges;
     private int[] edgeBuckets;
     private int numEdges;
 
-    private static final float DEC_BND = 20f;
-    private static final float INC_BND = 8f;
+    // RT-39439: Need to re-evaluate the BND constants set in the Picecs rasterizer for non AA shape
+    //  private static final float DEC_BND = 20f;
+    //  private static final float INC_BND = 8f;
+    private static final float DEC_BND = 5f;
+    private static final float INC_BND = 2f;
 
     // each bucket is a linked list. this method adds eptr to the
     // start "bucket"th linked list.
     private void addEdgeToBucket(final int eptr, final int bucket) {
         // we could implement this in terms of insertEdge, but this is a special