Lines Matching refs:nPoly
624 sal_uLong nPoly, in ImplPreparePolyDraw() argument
632 for( nCurrPoly=0; nCurrPoly<nPoly; ++nCurrPoly ) in ImplPreparePolyDraw()
1454 void WinSalGraphics::drawPolyPolygon( sal_uInt32 nPoly, const sal_uInt32* pPoints, in drawPolyPolygon() argument
1463 if ( nPoly <= SAL_POLYPOLYCOUNT_STACKBUF ) in drawPolyPolygon()
1466 pWinPointAry = new UINT[nPoly]; in drawPolyPolygon()
1468 for ( i = 0; i < (UINT)nPoly; i++ ) in drawPolyPolygon()
1486 for ( i = 0; i < (UINT)nPoly; i++ ) in drawPolyPolygon()
1495 if ( !WIN_PolyPolygon( getHDC(), pWinPointAryAry, (int*)pWinPointAry, (UINT)nPoly ) && in drawPolyPolygon()
1499 nPoly = 0; in drawPolyPolygon()
1502 nPolyPolyPoints += pWinPointAry[(UINT)nPoly]; in drawPolyPolygon()
1503 nPoly++; in drawPolyPolygon()
1506 nPoly--; in drawPolyPolygon()
1507 if ( pWinPointAry[(UINT)nPoly] > MAX_64KSALPOINTS ) in drawPolyPolygon()
1508 pWinPointAry[(UINT)nPoly] = MAX_64KSALPOINTS; in drawPolyPolygon()
1509 if ( nPoly == 1 ) in drawPolyPolygon()
1512 WIN_PolyPolygon( getHDC(), pWinPointAryAry, (int*)pWinPointAry, nPoly ); in drawPolyPolygon()
1595 sal_Bool WinSalGraphics::drawPolyPolygonBezier( sal_uInt32 nPoly, const sal_uInt32* pPoints, in drawPolyPolygonBezier() argument
1605 for( nCurrPoly=0, nTotalPoints=0; nCurrPoly<nPoly; ++nCurrPoly ) in drawPolyPolygonBezier()
1623 ImplPreparePolyDraw(true, nPoly, pPoints, pPtAry, pFlgAry, pWinPointAry, pWinFlagAry); in drawPolyPolygonBezier()