Searched refs:dstBounds (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DBlitLoops.cpp355 SurfaceDataBounds dstBounds; local
356 dstBounds.x1 = dx1;
357 dstBounds.y1 = dy1;
358 dstBounds.x2 = dx2;
359 dstBounds.y2 = dy2;
360 SurfaceData_IntersectBoundsXYXY(&dstBounds, 0, 0,
366 SurfaceData_IntersectBoundsXYXY(&dstBounds,
371 if (dstBounds.x1 != dx1) {
372 sx1 += (int)((dstBounds.x1 - dx1) * (sw / dw));
374 if (dstBounds
1023 SurfaceDataBounds srcBounds, dstBounds; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11PMBlitLoops.c138 SurfaceDataBounds dstBounds, srcBounds; local
177 dstBounds.x1 = dstx;
178 dstBounds.y1 = dsty;
179 dstBounds.x2 = dstx + width;
180 dstBounds.y2 = dsty + height;
183 SurfaceData_IntersectBlitBounds(&srcBounds, &dstBounds,
187 dstx = dstBounds.x1;
188 dsty = dstBounds.y1;
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLBlitLoops.c812 SurfaceDataBounds srcBounds, dstBounds; local
829 dstBounds.x1 = x + dx;
830 dstBounds.y1 = y + dy;
831 dstBounds.x2 = dstBounds.x1 + width;
832 dstBounds.y2 = dstBounds.y1 + height;
841 SurfaceData_IntersectBoundsXYXY(&dstBounds,
843 SurfaceData_IntersectBlitBounds(&dstBounds, &srcBounds, -dx, -dy);
845 if (dstBounds
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIBlitLoops.cpp86 SurfaceDataBounds dstBounds = {dstx, dsty, dstx + width, dsty + height}; local
89 SurfaceData_IntersectBlitBounds(&(srcInfo.bounds), &dstBounds,
94 dstx = dstBounds.x1;
95 dsty = dstBounds.y1;

Completed in 51 milliseconds