Searched refs:dstInfo (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/native/libawt/java2d/loops/
H A DMaskBlit.c46 SurfaceDataRasInfo dstInfo; local
75 dstInfo.bounds.x1 = dstx;
76 dstInfo.bounds.y1 = dsty;
77 dstInfo.bounds.x2 = dstx + width;
78 dstInfo.bounds.y2 = dsty + height;
81 SurfaceData_IntersectBounds(&dstInfo.bounds, &clipInfo.bounds);
85 if (dstOps->Lock(env, dstOps, &dstInfo, pPrim->dstflags) != SD_SUCCESS) {
89 SurfaceData_IntersectBlitBounds(&dstInfo.bounds, &srcInfo.bounds,
91 Region_IntersectBounds(&clipInfo, &dstInfo.bounds);
95 dstOps->GetRasInfo(env, dstOps, &dstInfo);
[all...]
H A DBlitBg.c45 SurfaceDataRasInfo dstInfo; local
75 dstInfo.bounds.x1 = dstx;
76 dstInfo.bounds.y1 = dsty;
77 dstInfo.bounds.x2 = dstx + width;
78 dstInfo.bounds.y2 = dsty + height;
81 SurfaceData_IntersectBounds(&dstInfo.bounds, &clipInfo.bounds);
90 if (dstOps->Lock(env, dstOps, &dstInfo, dstFlags) != SD_SUCCESS) {
94 SurfaceData_IntersectBlitBounds(&dstInfo.bounds, &srcInfo.bounds,
96 Region_IntersectBounds(&clipInfo, &dstInfo.bounds);
101 dstOps->GetRasInfo(env, dstOps, &dstInfo);
[all...]
H A DBlit.c45 SurfaceDataRasInfo dstInfo; local
75 dstInfo.bounds.x1 = dstx;
76 dstInfo.bounds.y1 = dsty;
77 dstInfo.bounds.x2 = dstx + width;
78 dstInfo.bounds.y2 = dsty + height;
81 SurfaceData_IntersectBounds(&dstInfo.bounds, &clipInfo.bounds);
90 if (dstOps->Lock(env, dstOps, &dstInfo, dstFlags) != SD_SUCCESS) {
94 SurfaceData_IntersectBlitBounds(&dstInfo.bounds, &srcInfo.bounds,
96 Region_IntersectBounds(&clipInfo, &dstInfo.bounds);
100 dstOps->GetRasInfo(env, dstOps, &dstInfo);
[all...]
H A DScaledBlit.c276 SurfaceDataRasInfo dstInfo; local
394 dstInfo.bounds.x1 = dstInfo.bounds.x2 = idx1;
396 dstInfo.bounds.x2++;
399 dstInfo.bounds.x1 = ((srcInfo.bounds.x1 <= sx1)
403 dstInfo.bounds.x2 = refine(idx1, ddx1, tilesize, scalex,
408 dstInfo.bounds.y1 = dstInfo.bounds.y2 = idy1;
410 dstInfo.bounds.y2++;
413 dstInfo
[all...]
H A DTransformHelper.c277 SurfaceDataRasInfo dstInfo; local
368 dstInfo.bounds.x1 = dx1;
369 dstInfo.bounds.y1 = dy1;
370 dstInfo.bounds.x2 = dx2;
371 dstInfo.bounds.y2 = dy2;
372 SurfaceData_IntersectBounds(&dstInfo.bounds, &clipInfo.bounds);
379 if (dstOps->Lock(env, dstOps, &dstInfo, pMaskBlitPrim->dstflags)
386 Region_IntersectBounds(&clipInfo, &dstInfo.bounds);
389 numedges = (((jlong) dstInfo.bounds.y2) - ((jlong) dstInfo
[all...]
/openjdk9/jdk/src/java.desktop/windows/native/libawt/java2d/d3d/
H A DD3DBlitLoops.cpp214 SurfaceDataRasInfo dstInfo; local
240 ZeroMemory(&dstInfo, sizeof(SurfaceDataRasInfo));
241 // dstInfo.bounds.x1 = 0;
242 // dstInfo.bounds.y1 = 0;
243 dstInfo.bounds.x2 = srcWidth;
244 dstInfo.bounds.y2 = srcHeight;
245 dstInfo.scanStride = lockedRect.Pitch;
246 dstInfo.pixelStride = 4;
252 dstx, dstInfo.pixelStride,
253 dsty, dstInfo
906 SurfaceDataRasInfo srcInfo, dstInfo; local
[all...]
/openjdk9/jdk/src/java.desktop/share/native/common/java2d/opengl/
H A DOGLBlitLoops.c765 SurfaceDataRasInfo srcInfo, dstInfo; local
785 dstInfo.bounds.x1 = dstx;
786 dstInfo.bounds.y1 = dsty;
787 dstInfo.bounds.x2 = dstx + width;
788 dstInfo.bounds.y2 = dsty + height;
790 if (dstOps->Lock(env, dstOps, &dstInfo, SD_LOCK_WRITE) != SD_SUCCESS) {
798 SurfaceData_IntersectBlitBounds(&dstInfo.bounds, &srcInfo.bounds,
804 dstOps->GetRasInfo(env, dstOps, &dstInfo);
805 if (dstInfo.rasBase) {
806 void *pDst = dstInfo
[all...]

Completed in 65 milliseconds