Lines Matching refs:pPtAry

626                           const SalPoint* const* 	pPtAry,  in ImplPreparePolyDraw()  argument
634 const POINT* pCurrPoint = reinterpret_cast<const POINT*>( *pPtAry++ ); in ImplPreparePolyDraw()
694 void ImplRenderPath( HDC hdc, sal_uLong nPoints, const SalPoint* pPtAry, const BYTE* pFlgAry ) in ImplRenderPath() argument
703 MoveToEx( hdc, pPtAry->mnX, pPtAry->mnY, NULL ); in ImplRenderPath()
704 ++pPtAry; ++pFlgAry; in ImplRenderPath()
706 for( i=1; i<nPoints; ++i, ++pPtAry, ++pFlgAry ) in ImplRenderPath()
710 LineTo( hdc, pPtAry->mnX, pPtAry->mnY ); in ImplRenderPath()
714 PolyBezierTo( hdc, reinterpret_cast<const POINT*>(pPtAry), 3 ); in ImplRenderPath()
715 i += 2; pPtAry += 2; pFlgAry += 2; in ImplRenderPath()
1424 void WinSalGraphics::drawPolyLine( sal_uInt32 nPoints, const SalPoint* pPtAry ) in drawPolyLine() argument
1430 POINT* pWinPtAry = (POINT*)pPtAry; in drawPolyLine()
1439 void WinSalGraphics::drawPolygon( sal_uInt32 nPoints, const SalPoint* pPtAry ) in drawPolygon() argument
1445 POINT* pWinPtAry = (POINT*)pPtAry; in drawPolygon()
1455 PCONSTSALPOINT* pPtAry ) in drawPolyPolygon() argument
1489 pPolyAry = pPtAry[i]; in drawPolyPolygon()
1527 sal_Bool WinSalGraphics::drawPolyLineBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const BYTE… in drawPolyLineBezier() argument
1534 ImplRenderPath( getHDC(), nPoints, pPtAry, pFlgAry ); in drawPolyLineBezier()
1544 sal_Bool WinSalGraphics::drawPolygonBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const BYTE*… in drawPolygonBezier() argument
1566 ImplPreparePolyDraw(true, 1, &nPoints, &pPtAry, &pFlgAry, pWinPointAry, pWinFlagAry); in drawPolygonBezier()
1596 … const SalPoint* const* pPtAry, const BYTE* const* pFlgAry ) in drawPolyPolygonBezier() argument
1623 ImplPreparePolyDraw(true, nPoly, pPoints, pPtAry, pFlgAry, pWinPointAry, pWinFlagAry); in drawPolyPolygonBezier()