Searched refs:srcRect (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/test/sun/java2d/SunGraphics2D/SourceClippingBlitTest/
H A DSourceClippingBlitTest.java148 Rectangle srcRect = (Rectangle)IMAGE_BOUNDS.clone();
149 srcRect.translate(locationVar, locationVar);
150 srcRect.grow(sizeVar, sizeVar);
154 srcRect.width, srcRect.height);
155 System.out.println("testing blit rect src: " + srcRect);
157 render(getGraphics(), srcIm, srcRect, dstRect);
158 test(srcRect, dstRect);
172 Rectangle srcRect, Rectangle dstRect)
179 int bltWidth = srcRect
171 render(Graphics g, Image image, Rectangle srcRect, Rectangle dstRect) argument
203 test(Rectangle srcRect, Rectangle dstRect) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_png.c62 ImageRect srcRect, dstRect; local
159 initRect(&srcRect, 0, 0, width, height, 1, rowbytes,
163 convertRect(&srcRect, &dstRect, CVT_COPY);
H A Dsplashscreen_gif.c215 ImageRect srcRect, dstRect; local
242 initRect(&srcRect, 0, 0, desc->Width, numLines, 1,
249 pSrc += convertRect(&srcRect, &dstRect, CVT_ALPHATEST);
252 pSrc += (numPassLines - numLines) * srcRect.stride;
H A Dsplashscreen_impl.c123 ImageRect srcRect, dstRect; local
125 initRect(&srcRect, 0, 0, splash->width, splash->height, 1,
139 convertRect2(&srcRect, &dstRect, CVT_BLEND, &splash->overlayRect);
142 convertRect(&srcRect, &dstRect, CVT_COPY);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageWriter.java629 Rectangle srcRect =
635 src = input.getData(srcRect);
640 int startX = srcRect.x - src.getSampleModelTranslateX();
641 int startY = srcRect.y - src.getSampleModelTranslateY();
693 src.getPixels(srcRect.x, srcRect.y,
694 srcRect.width, srcRect.height, pixels);
706 src.getPixels(srcRect.x, srcRect
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DSurfaceData.cpp432 RECT srcRect = { x, y, x+1, y+1}; local
436 res = pd3dDevice->StretchRect(pSrc, &srcRect, pTmpSurface, &dstRect,
494 RECT srcRect = { 0l, 0l, 1, 1 }; local
498 res = pTmpSurface->LockRect(&lRect, &srcRect, D3DLOCK_NOSYSLOCK);
507 res = pd3dDevice->StretchRect(pTmpSurface, &srcRect, pSrc, &dstRect,
H A DD3DRenderQueue.cpp67 RECT srcRect, dstRect, *pSrcRect, *pDstRect; local
128 srcRect.left = x1;
129 srcRect.top = y1;
130 srcRect.right = x2;
131 srcRect.bottom = y2;
133 dstRect = srcRect;
135 pSrcRect = &srcRect;
H A DD3DBlitLoops.cpp391 RECT srcRect = { sx1, sy1, sx2, sy2 }; local
394 return pd3dDevice->StretchRect(pSrc, &srcRect, pDst, &dstRect, hint);
634 RECT srcRect = { (LONG)sx, (LONG)sy, local
638 &srcRect, pBlitSurface, &dstRect,
994 RECT srcRect = { srcx, srcy, srcx+width, srcy+height}; local
998 &srcRect, pTmpSurface,
1097 RECT srcRect = { sx1, sy1, sx2, sy2 }; local
1099 res = pd3dDevice->StretchRect(dstOps->pResource->GetSurface(), &srcRect,
H A DD3DTextRenderer.cpp411 RECT srcRect = { cx1, cy1, cx2, cy2 }; local
415 res = pd3dDevice->StretchRect(pDst, &srcRect,
490 RECT srcRect = { cx1, cy1, cx2, cy2 }; local
494 res = pd3dDevice->StretchRect(pDst, &srcRect,
731 RECT srcRect = { cx1, cy1, cx2, cy2 }; local
733 pd3dDevice->StretchRect(pDst, &srcRect,
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPathGraphics.java391 Rectangle2D.Float srcRect = new Rectangle2D.Float(srcX, srcY,
395 Shape rotShape = rotTransform.createTransformedShape(srcRect);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java1004 Rectangle2D.Float srcRect = new Rectangle2D.Float(srcX, srcY,
1008 Shape rotShape = rotTransform.createTransformedShape(srcRect);
1307 clip(xform.createTransformedShape(srcRect));

Completed in 58 milliseconds