Searched refs:bboxX1 (Results 1 - 4 of 4) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/pisces/
H A DPiscesCache.java35 final int bboxX0, bboxY0, bboxX1, bboxY1; field in class:PiscesCache
63 bboxX1 = maxx + 1;
112 // bboxX0, bboxY0, bboxX1, bboxY1);
169 // Since we add +1 to bboxX1,bboxY1 so when PTG asks for bbox,
173 bbox[2] = bboxX1 - 1;
181 bboxX1+", "+bboxY1+"]\n";
H A DPiscesTileGenerator.java114 // starting at x,y that has width = Math.min(TILE_SIZE, bboxX1-x),
136 if ((x += TILE_SIZE) >= cache.bboxX1) {
157 if (x1 > cache.bboxX1) x1 = cache.bboxX1;
/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/marlin/
H A DMarlinCache.java71 int bboxX0, bboxY0, bboxX1, bboxY1; field in class:MarlinCache
128 bboxX1 = maxx;
277 final int px_bbox1 = FloatMath.min(px1, bboxX1);
393 final int px_bbox1 = FloatMath.min(px1, bboxX1);
589 if (px1 > bboxX1) {
676 + bboxX1 + ", " + bboxY1 + "]\n";
H A DMarlinTileGenerator.java77 bbox[2] = cache.bboxX1;
119 // starting at x,y that has width = Math.min(TILE_SIZE, bboxX1-x),
146 if ((x += TILE_SIZE) >= cache.bboxX1) {
193 final int x1 = FloatMath.min(x0 + TILE_SIZE, _cache.bboxX1);
303 final int x1 = FloatMath.min(x0 + TILE_SIZE, _cache.bboxX1);

Completed in 68 milliseconds