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

/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DFillSpans.c47 jint bbox[4]; local
72 (*pSpanFuncs->getPathBox)(env, siData, bbox);
73 rasInfo.bounds.x1 = bbox[0];
74 rasInfo.bounds.y1 = bbox[1];
75 rasInfo.bounds.x2 = bbox[2];
76 rasInfo.bounds.y2 = bbox[3];
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DJulesRenderingEngine.java40 boolean normalize, int[] bbox) {
44 normalize, bbox);
47 normalize, bbox);
38 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int[] bbox) argument
H A DJulesAATileGenerator.java62 boolean normalize, int[] bbox) {
71 calculateArea(bbox);
93 private void calculateArea(int[] bbox) { argument
97 bbox[0] = 0;
98 bbox[1] = 0;
99 bbox[2] = 0;
100 bbox[3] = 0;
110 bbox[0] = left;
111 bbox[1] = top;
112 bbox[
60 JulesAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int[] bbox) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRenderingEngine.java231 * iteration in the bbox parameter.
246 * Upon returning, this method will fill the {@code bbox} parameter
252 * for (y = bbox[1]; y < bbox[3]; y += tileheight) {
253 * for (x = bbox[0]; x < bbox[2]; x += tilewidth) {
270 * @param bbox returns the bounds of the iteration
281 int bbox[]);
285 * store the bounds of the tile iteration in the bbox parameter.
314 * Upon returning, this method will fill the {@code bbox} paramete
275 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int bbox[]) argument
342 getAATileGenerator(double x, double y, double dx1, double dy1, double dx2, double dy2, double lw1, double lw2, Region clip, int bbox[]) argument
443 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int bbox[]) argument
462 getAATileGenerator(double x, double y, double dx1, double dy1, double dx2, double dy2, double lw1, double lw2, Region clip, int bbox[]) argument
[all...]
H A DSpanShapeRenderer.java55 Rectangle devR, int[] bbox) {
56 return comppipe.startSequence(sg, s, devR, bbox);
72 Rectangle devR, int[] bbox) {
123 Rectangle devR, int[] bbox);
54 startSequence(SunGraphics2D sg, Shape s, Rectangle devR, int[] bbox) argument
71 startSequence(SunGraphics2D sg, Shape s, Rectangle devR, int[] bbox) argument
122 startSequence(SunGraphics2D sg, Shape s, Rectangle devR, int[] bbox) argument
H A DRegion.java1223 * Gets the bbox of the available spans, clipped to the OutputArea.
1233 * Clips the indicated bbox array to the bounds of this Region.
1235 public void clipBoxToBounds(int bbox[]) { argument
1236 if (bbox[0] < lox) bbox[0] = lox;
1237 if (bbox[1] < loy) bbox[1] = loy;
1238 if (bbox[2] > hix) bbox[2] = hix;
1239 if (bbox[
1260 getSpanIterator(int bbox[]) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesTileGenerator.java78 public void getBbox(int bbox[]) { argument
79 bbox[0] = cache.bboxX0;
80 bbox[1] = cache.bboxY0;
81 bbox[2] = cache.bboxX1;
82 bbox[3] = cache.bboxY1;
83 //System.out.println("bbox["+bbox[0]+", "+bbox[1]+" => "+bbox[2]+", "+bbox[
[all...]
H A DPiscesRenderingEngine.java491 * iteration in the bbox parameter.
506 * Upon returning, this method will fill the {@code bbox} parameter
512 * for (y = bbox[1]; y < bbox[3]; y += tileheight) {
513 * for (x = bbox[0]; x < bbox[2]; x += tilewidth) {
530 * @param bbox returns the bounds of the iteration
541 int bbox[])
566 ptg.getBbox(bbox);
575 int bbox[])
535 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int bbox[]) argument
570 getAATileGenerator(double x, double y, double dx1, double dy1, double dx2, double dy2, double lw1, double lw2, Region clip, int bbox[]) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/dc/
H A DDuctusRenderingEngine.java395 int bbox[])
616 r.getAlphaBox(bbox);
617 clip.clipBoxToBounds(bbox);
618 if (bbox[0] >= bbox[2] || bbox[1] >= bbox[3]) {
622 r.setOutputArea(bbox[0], bbox[1],
623 bbox[
389 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int bbox[]) argument
642 getAATileGenerator(double x, double y, double dx1, double dy1, double dx2, double dy2, double lw1, double lw2, Region clip, int bbox[]) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DmultiVis.c253 XRectangle bbox; /* bounding box of grabbed area */ local
259 bbox.x = (short) x; /* init X rect for bounding box */
260 bbox.y = (short) y;
261 bbox.width = (unsigned short) width;
262 bbox.height = (unsigned short) height;
271 if ((*vis_regions = make_region_list( disp, srcRootWinid, &bbox,
281 make_region_list( disp, srcRootWinid, &bbox, &hasNonDefault,
389 ReadRegionsInList(disp,fakeVis,depth,format,width,height,bbox,regions)
394 XRectangle bbox; /* bounding box of grabbed area */
445 Intersect bbox wit
498 XRectangle bbox; /* bounding box of grabbed area */ local
[all...]
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c1292 FT_BBox bbox; local
1309 error = FT_Outline_Get_BBox(outline, &bbox);
1311 //convert bbox
1312 if (error || bbox.xMin >= bbox.xMax || bbox.yMin >= bbox.yMax) {
1320 F26Dot6ToFloat(bbox.xMin),
1321 F26Dot6ToFloat(-bbox.yMax),
1322 F26Dot6ToFloat(bbox
[all...]

Completed in 85 milliseconds