Searched defs:dstRect (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_png.c62 ImageRect srcRect, dstRect; local
161 initRect(&dstRect, 0, 0, width, height, 1, stride,
163 convertRect(&srcRect, &dstRect, CVT_COPY);
H A Dsplashscreen_gif.c215 ImageRect srcRect, dstRect; local
246 initRect(&dstRect, cx, cy + ofs, cw,
249 pSrc += convertRect(&srcRect, &dstRect, CVT_ALPHATEST);
279 ImageRect dstRect; local
286 initRect(&dstRect,
290 fillRect(fillColor, &dstRect);
H A Dsplashscreen_impl.c123 ImageRect srcRect, dstRect; local
136 initRect(&dstRect, 0, 0, splash->width, splash->height, 1,
139 convertRect2(&srcRect, &dstRect, CVT_BLEND, &splash->overlayRect);
142 convertRect(&srcRect, &dstRect, CVT_COPY);
/openjdk7/jdk/test/sun/java2d/SunGraphics2D/SourceClippingBlitTest/
H A DSourceClippingBlitTest.java152 Rectangle dstRect =
156 System.out.println(" dst: " + dstRect);
157 render(getGraphics(), srcIm, srcRect, dstRect);
158 test(srcRect, dstRect);
172 Rectangle srcRect, Rectangle dstRect)
193 dstRect.x, dstRect.y,
194 dstRect.x + bltWidth, dstRect.y + bltHeight,
203 public void test(Rectangle srcRect, Rectangle dstRect) { argument
171 render(Graphics g, Image image, Rectangle srcRect, Rectangle dstRect) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DSurfaceData.cpp433 RECT dstRect = { 0l, 0l, 1, 1 }; local
436 res = pd3dDevice->StretchRect(pSrc, &srcRect, pTmpSurface, &dstRect,
441 res = pTmpSurface->LockRect(&lRect, &dstRect, D3DLOCK_NOSYSLOCK);
495 RECT dstRect = { x, y, x+1, y+1}; local
507 res = pd3dDevice->StretchRect(pTmpSurface, &srcRect, pSrc, &dstRect,
H A DD3DBlitLoops.cpp392 RECT dstRect = { dstBounds.x1, dstBounds.y1, dstBounds.x2, dstBounds.y2 }; local
394 return pd3dDevice->StretchRect(pSrc, &srcRect, pDst, &dstRect, hint);
636 RECT dstRect = { 0l, 0l, (LONG)dw, (LONG)dh }; local
638 &srcRect, pBlitSurface, &dstRect,
995 RECT dstRect = { 0l, 0l, width, height }; local
999 &dstRect, D3DTEXF_NONE);
1105 RECT dstRect = { dx1, dy1, dx2, dy2 }; local
1109 &dstRect,
H A DD3DRenderQueue.cpp67 RECT srcRect, dstRect, *pSrcRect, *pDstRect; local
133 dstRect = srcRect;
136 pDstRect = &dstRect;
H A DD3DTextRenderer.cpp412 RECT dstRect = { cdx1, cdy1, cdx2, cdy2 }; local
416 pCachedDestSurface, &dstRect,
491 RECT dstRect = { cx1-dx1, cy1-dy1, cx2-dx1, cy2-dy1 }; local
495 pCachedDestSurface, &dstRect,
732 RECT dstRect = { cx1-x, cy1-y, cx2-x, cy2-y }; local
735 &dstRect,

Completed in 69 milliseconds