Searched refs:_y1 (Results 1 - 1 of 1) sorted by relevance
/openjdk7/jdk/src/share/native/sun/java2d/loops/ |
H A D | DrawLine.c | 262 LineUtils_SetupBresenhamBig(jint _x1, jint _y1, jint _x2, jint _y2, argument 293 if (OverflowsBig(_x1) || OverflowsBig(_y1) || 310 double Y1d = _y1; 316 Y1d = _y1 + (BIG_MIN - _x1) * DYd / DXd; 319 Y1d = _y1 - (_x1 - BIG_MAX) * DYd / DXd; 322 /* Use Y1d instead of _y1 for testing now as we may have modified it */ 324 X1d = _x1 + (BIG_MIN - _y1) * DXd / DYd; 327 X1d = _x1 - (_y1 - BIG_MAX) * DXd / DYd; 346 _y1 = (int) Y1d; 351 SETUP_BRESENHAM(jlong, _x1, _y1, _x 357 LineUtils_SetupBresenham(jint _x1, jint _y1, jint _x2, jint _y2, jint shorten, SurfaceDataBounds *pBounds, jint *pStartX, jint *pStartY, jint *pSteps, jint *pError, jint *pErrMajor, jint *pBumpMajorMask, jint *pErrMinor, jint *pBumpMinorMask) argument [all...] |
Completed in 30 milliseconds