Searched refs:bboxY1 (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
64 bboxY1 = maxy + 1;
69 rowAARLE = new int[bboxY1 - bboxY0 + 1][INIT_ROW_SIZE];
112 // bboxX0, bboxY0, bboxX1, bboxY1);
130 assert y <= bboxY1; // perhaps this should be < instead of <=
169 // Since we add +1 to bboxX1,bboxY1 so when PTG asks for bbox,
174 bbox[3] = bboxY1 - 1;
181 bboxX1+", "+bboxY1+"]\n";
H A DPiscesTileGenerator.java115 // and height min(TILE_SIZE,bboxY1-y), which is what should happen.
158 if (y1 > cache.bboxY1) y1 = cache.bboxY1;
/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/marlin/
H A DMarlinTileGenerator.java78 bbox[3] = cache.bboxY1;
120 // and height min(TILE_SIZE,bboxY1-y), which is what should happen.
150 if (y < cache.bboxY1) {
152 // [ y; max(y + TILE_SIZE, bboxY1) ]
197 final int y1 = FloatMath.min(this.y + TILE_SIZE, _cache.bboxY1) - this.y;
307 final int y1 = FloatMath.min(this.y + TILE_SIZE, _cache.bboxY1) - this.y;
H A DMarlinCache.java71 int bboxX0, bboxY0, bboxX1, bboxY1; field in class:MarlinCache
129 bboxY1 = maxy;
676 + bboxX1 + ", " + bboxY1 + "]\n";

Completed in 92 milliseconds