Searched defs:boundsMinY (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DRenderer.java65 int bucket = cury - boundsMinY;
276 final int firstCrossing = Math.max((int)Math.ceil(y1), boundsMinY);
301 final int bucketIdx = firstCrossing - boundsMinY;
303 edgeBucketCounts[lastCrossing - boundsMinY] |= 1;
326 private final int boundsMinX, boundsMinY, boundsMaxX, boundsMaxY; field in class:Renderer
353 this.boundsMinY = pix_boundsY * SUBPIXEL_POSITIONS_Y;
359 edgeBuckets = new int[boundsMaxY - boundsMinY];
447 int y = boundsMinY; // needs to be declared here so we emit the last row properly.
517 int spminY = Math.max((int)Math.ceil(edgeMinY), boundsMinY);
527 boundsMinY >> SUBPIXEL_LG_POSITIONS_
[all...]

Completed in 31 milliseconds