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

/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DBlit.c45 SurfaceDataRasInfo dstInfo; local
72 dstInfo.bounds.x1 = dstx;
73 dstInfo.bounds.y1 = dsty;
74 dstInfo.bounds.x2 = dstx + width;
75 dstInfo.bounds.y2 = dsty + height;
78 SurfaceData_IntersectBounds(&dstInfo.bounds, &clipInfo.bounds);
87 if (dstOps->Lock(env, dstOps, &dstInfo, dstFlags) != SD_SUCCESS) {
91 SurfaceData_IntersectBlitBounds(&dstInfo.bounds, &srcInfo.bounds,
93 Region_IntersectBounds(&clipInfo, &dstInfo.bounds);
97 dstOps->GetRasInfo(env, dstOps, &dstInfo);
[all...]
H A DBlitBg.c45 SurfaceDataRasInfo dstInfo; local
72 dstInfo.bounds.x1 = dstx;
73 dstInfo.bounds.y1 = dsty;
74 dstInfo.bounds.x2 = dstx + width;
75 dstInfo.bounds.y2 = dsty + height;
78 SurfaceData_IntersectBounds(&dstInfo.bounds, &clipInfo.bounds);
87 if (dstOps->Lock(env, dstOps, &dstInfo, dstFlags) != SD_SUCCESS) {
91 SurfaceData_IntersectBlitBounds(&dstInfo.bounds, &srcInfo.bounds,
93 Region_IntersectBounds(&clipInfo, &dstInfo.bounds);
98 dstOps->GetRasInfo(env, dstOps, &dstInfo);
[all...]
H A DMaskBlit.c46 SurfaceDataRasInfo dstInfo; local
72 dstInfo.bounds.x1 = dstx;
73 dstInfo.bounds.y1 = dsty;
74 dstInfo.bounds.x2 = dstx + width;
75 dstInfo.bounds.y2 = dsty + height;
78 SurfaceData_IntersectBounds(&dstInfo.bounds, &clipInfo.bounds);
82 if (dstOps->Lock(env, dstOps, &dstInfo, pPrim->dstflags) != SD_SUCCESS) {
86 SurfaceData_IntersectBlitBounds(&dstInfo.bounds, &srcInfo.bounds,
88 Region_IntersectBounds(&clipInfo, &dstInfo.bounds);
92 dstOps->GetRasInfo(env, dstOps, &dstInfo);
[all...]
H A DScaledBlit.c276 SurfaceDataRasInfo dstInfo; local
391 dstInfo.bounds.x1 = dstInfo.bounds.x2 = idx1;
393 dstInfo.bounds.x2++;
396 dstInfo.bounds.x1 = ((srcInfo.bounds.x1 <= sx1)
400 dstInfo.bounds.x2 = refine(idx1, ddx1, tilesize, scalex,
405 dstInfo.bounds.y1 = dstInfo.bounds.y2 = idy1;
407 dstInfo.bounds.y2++;
410 dstInfo
[all...]
H A DTransformHelper.c277 SurfaceDataRasInfo dstInfo; local
362 dstInfo.bounds.x1 = dx1;
363 dstInfo.bounds.y1 = dy1;
364 dstInfo.bounds.x2 = dx2;
365 dstInfo.bounds.y2 = dy2;
366 SurfaceData_IntersectBounds(&dstInfo.bounds, &clipInfo.bounds);
373 if (dstOps->Lock(env, dstOps, &dstInfo, pMaskBlitPrim->dstflags)
380 Region_IntersectBounds(&clipInfo, &dstInfo.bounds);
382 numedges = (((jlong) dstInfo.bounds.y2) - ((jlong) dstInfo
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLBlitLoops.c706 SurfaceDataRasInfo srcInfo, dstInfo; local
726 dstInfo.bounds.x1 = dstx;
727 dstInfo.bounds.y1 = dsty;
728 dstInfo.bounds.x2 = dstx + width;
729 dstInfo.bounds.y2 = dsty + height;
731 if (dstOps->Lock(env, dstOps, &dstInfo, SD_LOCK_WRITE) != SD_SUCCESS) {
739 SurfaceData_IntersectBlitBounds(&dstInfo.bounds, &srcInfo.bounds,
745 dstOps->GetRasInfo(env, dstOps, &dstInfo);
746 if (dstInfo.rasBase) {
747 void *pDst = dstInfo
[all...]
/openjdk7/jdk/src/windows/native/sun/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
904 SurfaceDataRasInfo srcInfo, dstInfo; local
[all...]

Completed in 49 milliseconds