Searched refs:bbox (Results 1 - 18 of 18) sorted by relevance

/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/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];
H A DAnyByteBinary.h314 jint bbox[4]; \
316 while ((*pSpanFuncs->nextSpan)(siData, bbox)) { \
317 jint x = bbox[0]; \
318 jint y = bbox[1]; \
319 juint w = bbox[2] - x; \
320 juint h = bbox[3] - y; \
419 jint bbox[4]; \
421 while ((*pSpanFuncs->nextSpan)(siData, bbox)) { \
422 jint x = bbox[0]; \
423 jint y = bbox[
[all...]
H A DLoopMacros.h1274 jint bbox[4]; \
1277 while ((*pSpanFuncs->nextSpan)(siData, bbox)) { \
1278 jint x = bbox[0]; \
1279 jint y = bbox[1]; \
1280 juint w = bbox[2] - x; \
1281 juint h = bbox[3] - y; \
1475 jint bbox[4]; \
1481 while ((*pSpanFuncs->nextSpan)(siData, bbox)) { \
1482 jint x = bbox[0]; \
1483 jint y = bbox[
[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/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/java2d/loops/
H A Djava2d_Mlib.c214 jint bbox[4]; \
218 while ((*pSpanFuncs->nextSpan)(siData, bbox)) { \
219 mlib_s32 lox = bbox[0]; \
220 mlib_s32 loy = bbox[1]; \
221 mlib_s32 width = bbox[2] - lox; \
222 mlib_s32 height = bbox[3] - loy; \
256 jint bbox[4]; \
262 while ((*pSpanFuncs->nextSpan)(siData, bbox)) { \
263 mlib_s32 lox = bbox[0]; \
264 mlib_s32 loy = bbox[
[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/macosx/native/sun/font/
H A DAWTStrike.m184 CGRect bbox;
185 JRSFontGetBoundingBoxesForGlyphsAndStyle(fallback, &tx, awtStrike->fStyle, &glyph, 1, &bbox);
189 CGFloat decender = -bbox.origin.y;
190 bbox.origin.y = -bbox.size.height + decender;
195 JNFCallVoidMethod(env, result, sjr_Rectangle2DFloat_setRect, (jfloat)bbox.origin.x, (jfloat)bbox.origin.y, (jfloat)bbox.size.width, (jfloat)bbox.size.height);
H A DCGGlyphImages.m457 CGGI_CreateNewGlyphInfoFrom(CGSize advance, CGRect bbox,
465 bbox.size.width += CGGI_GLYPH_BBOX_PADDING * 2.0f;
466 bbox.size.height += CGGI_GLYPH_BBOX_PADDING * 2.0f;
467 bbox.origin.x -= CGGI_GLYPH_BBOX_PADDING;
468 bbox.origin.y -= CGGI_GLYPH_BBOX_PADDING;
470 vImagePixelCount width = ceilf(bbox.size.width);
471 vImagePixelCount height = ceilf(bbox.size.height);
493 glyphInfo->topLeftX = round(bbox.origin.x);
494 glyphInfo->topLeftY = round(bbox.origin.y);
563 CGRect bbox;
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekGraphics.java1399 // Rectangle2D.Double bbox = new Rectangle2D.Double();
1407 // bbox.setBoundsFromDiagonal(leftTop, rightBottom);
1408 // addDrawingRect(bbox);
1469 Rectangle2D bbox = getFont().getStringBounds(str, frc);
1470 addDrawingRect(bbox, x, y);
1493 Rectangle2D bbox = g.getLogicalBounds();
1494 addDrawingRect(bbox, x, y);
1776 Rectangle2D.Float bbox = new Rectangle2D.Float(x, y, width, height);
1777 addDrawingRect(bbox);
/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...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXFileDialogPeer.java864 Rectangle bbox = bounds();
871 x2 = bbox.width - 1;
872 y1 = y2 = bbox.height/2 - 1;
876 x1 = x2 = bbox.width/2 - 1;
878 y2 = bbox.height - 1;

Completed in 259 milliseconds