Home
last modified time | relevance | path

Searched refs:pFlgAry (Results 1 – 16 of 16) sorted by path

/trunk/main/vcl/inc/aqua/
H A Dsalgdi.h239 …al_Bool drawPolyLineBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry );
240 …sal_Bool drawPolygonBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry );
241 …nPoly, const sal_uInt32* pPoints, const SalPoint* const* pPtAry, const sal_uInt8* const* pFlgAry );
/trunk/main/vcl/inc/os2/
H A Dsalgdi.h175 …al_Bool drawPolyLineBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry );
176 …sal_Bool drawPolygonBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry );
177 …nPoly, const sal_uInt32* pPoints, const SalPoint* const* pPtAry, const sal_uInt8* const* pFlgAry );
/trunk/main/vcl/inc/
H A Dprintergfx.hxx363 const sal_uInt8* pFlgAry );
366 const sal_uInt8* pFlgAry);
370 const sal_uInt8* const* pFlgAry);
H A Dsalgdi.hxx130 …ool drawPolyLineBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry ) = 0;
131 …Bool drawPolygonBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry ) = 0;
132 …y, const sal_uInt32* pPoints, const SalPoint* const* pPtAry, const sal_uInt8* const* pFlgAry ) = 0;
391 const sal_uInt8* pFlgAry,
395 const sal_uInt8* pFlgAry,
400 const sal_uInt8* const* pFlgAry,
/trunk/main/vcl/inc/unx/
H A Dpspgraphics.h147 const sal_uInt8* pFlgAry );
150 const sal_uInt8* pFlgAry );
154 const sal_uInt8* const* pFlgAry );
H A Dsalgdi.h298 const sal_uInt8* pFlgAry );
301 const sal_uInt8* pFlgAry );
305 const sal_uInt8* const* pFlgAry );
/trunk/main/vcl/inc/win/
H A Dsalgdi.h203 …al_Bool drawPolyLineBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry );
204 …sal_Bool drawPolygonBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry );
205 …nt32 nPoly, const sal_uInt32* pPoints, const SalPoint* const* pPtAry, const BYTE* const* pFlgAry );
/trunk/main/vcl/os2/source/gdi/
H A Dsalgdi.cxx697 …ics::drawPolyLineBezier( sal_uInt32 /*nPoints*/, const SalPoint* pPtAry, const sal_uInt8* pFlgAry ) in drawPolyLineBezier() argument
704 …hics::drawPolygonBezier( sal_uInt32 /*nPoints*/, const SalPoint* pPtAry, const sal_uInt8* pFlgAry ) in drawPolygonBezier() argument
712 … const SalPoint* const* pPtAry, const sal_uInt8* const* pFlgAry ) in drawPolyPolygonBezier() argument
/trunk/main/vcl/source/gdi/
H A Doutdev.cxx1841 const sal_uInt8* pFlgAry = aPoly.GetConstFlagAry(); in DrawPolyLine() local
1842 if( !mpGraphics->DrawPolyLineBezier( nPoints, pPtAry, pFlgAry, this ) ) in DrawPolyLine()
2030 const sal_uInt8* pFlgAry = aPoly.GetConstFlagAry(); in DrawPolygon() local
2031 if( !mpGraphics->DrawPolygonBezier( nPoints, pPtAry, pFlgAry, this ) ) in DrawPolygon()
H A Dsalgdilayout.cxx511 …LineBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry, const OutputDevi… in DrawPolyLineBezier() argument
518 bResult = drawPolyLineBezier( nPoints, bCopied ? pPtAry2 : pPtAry, pFlgAry ); in DrawPolyLineBezier()
522 bResult = drawPolyLineBezier( nPoints, pPtAry, pFlgAry ); in DrawPolyLineBezier()
526 …ygonBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry, const OutputDevi… in DrawPolygonBezier() argument
533 bResult = drawPolygonBezier( nPoints, bCopied ? pPtAry2 : pPtAry, pFlgAry ); in DrawPolygonBezier()
537 bResult = drawPolygonBezier( nPoints, pPtAry, pFlgAry ); in DrawPolygonBezier()
/trunk/main/vcl/unx/generic/gdi/
H A Dpspgraphics.cxx439 …raphics::drawPolyLineBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry ) in drawPolyLineBezier() argument
441 m_pPrinterGfx->DrawPolyLineBezier (nPoints, (Point*)pPtAry, pFlgAry); in drawPolyLineBezier()
445 …Graphics::drawPolygonBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry ) in drawPolygonBezier() argument
447 m_pPrinterGfx->DrawPolygonBezier (nPoints, (Point*)pPtAry, pFlgAry); in drawPolygonBezier()
454 const sal_uInt8* const* pFlgAry ) in drawPolyPolygonBezier() argument
457 m_pPrinterGfx->DrawPolyPolygonBezier (nPoly, pPoints, (Point**)pPtAry, (sal_uInt8**)pFlgAry); in drawPolyPolygonBezier()
/trunk/main/vcl/unx/generic/printergfx/
H A Dcommon_gfx.cxx526 PrinterGfx::DrawPolyLineBezier (sal_uInt32 nPoints, const Point* pPath, const sal_uInt8* pFlgAry) in DrawPolyLineBezier() argument
545 … if (pFlgAry[i] != POLY_CONTROL) //If the next point is a POLY_NORMAL, we're drawing a line in DrawPolyLineBezier()
554 if ((pFlgAry[i] == POLY_CONTROL) && (pFlgAry[i+1] == POLY_CONTROL) && in DrawPolyLineBezier()
555 (pFlgAry[i+2] != POLY_CONTROL)) in DrawPolyLineBezier()
577 PrinterGfx::DrawPolygonBezier (sal_uInt32 nPoints, const Point* pPath, const sal_uInt8* pFlgAry) in DrawPolygonBezier() argument
589 if (pFlgAry[i] != POLY_CONTROL) in DrawPolygonBezier()
599 if ((pFlgAry[i] == POLY_CONTROL) && (pFlgAry[i+1] == POLY_CONTROL) && in DrawPolygonBezier()
600 (pFlgAry[i+2] != POLY_CONTROL)) in DrawPolygonBezier()
633 …32 nPoly, const sal_uInt32 * pPoints, const Point* const * pPtAry, const sal_uInt8* const* pFlgAry) in DrawPolyPolygonBezier() argument
654 if ( ! pFlgAry[i] || pFlgAry[i][j] != POLY_CONTROL) in DrawPolyPolygonBezier()
[all …]
/trunk/main/vcl/unx/headless/
H A Dsvpgdi.hxx137 const sal_uInt8* pFlgAry );
140 const sal_uInt8* pFlgAry );
144 const sal_uInt8* const* pFlgAry );
H A Dsvppspgraphics.cxx365 …raphics::drawPolyLineBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry ) in drawPolyLineBezier() argument
367 m_pPrinterGfx->DrawPolyLineBezier (nPoints, (Point*)pPtAry, pFlgAry); in drawPolyLineBezier()
371 …Graphics::drawPolygonBezier( sal_uInt32 nPoints, const SalPoint* pPtAry, const sal_uInt8* pFlgAry ) in drawPolygonBezier() argument
373 m_pPrinterGfx->DrawPolygonBezier (nPoints, (Point*)pPtAry, pFlgAry); in drawPolygonBezier()
380 const sal_uInt8* const* pFlgAry ) in drawPolyPolygonBezier() argument
383 m_pPrinterGfx->DrawPolyPolygonBezier (nPoly, pPoints, (Point**)pPtAry, (sal_uInt8**)pFlgAry); in drawPolyPolygonBezier()
H A Dsvppspgraphics.hxx156 const sal_uInt8* pFlgAry );
159 const sal_uInt8* pFlgAry );
163 const sal_uInt8* const* pFlgAry );
/trunk/main/vcl/win/source/gdi/
H A Dsalgdi.cxx627 const BYTE* const* pFlgAry, in ImplPreparePolyDraw() argument
635 const BYTE* pCurrFlag = *pFlgAry++; in ImplPreparePolyDraw()
694 void ImplRenderPath( HDC hdc, sal_uLong nPoints, const SalPoint* pPtAry, const BYTE* pFlgAry ) in ImplRenderPath() argument
704 ++pPtAry; ++pFlgAry; in ImplRenderPath()
706 for( i=1; i<nPoints; ++i, ++pPtAry, ++pFlgAry ) in ImplRenderPath()
708 if( *pFlgAry != POLY_CONTROL ) in ImplRenderPath()
715 i += 2; pPtAry += 2; pFlgAry += 2; in ImplRenderPath()
1534 ImplRenderPath( getHDC(), nPoints, pPtAry, pFlgAry ); in drawPolyLineBezier()
1566 ImplPreparePolyDraw(true, 1, &nPoints, &pPtAry, &pFlgAry, pWinPointAry, pWinFlagAry); in drawPolygonBezier()
1596 … const SalPoint* const* pPtAry, const BYTE* const* pFlgAry ) in drawPolyPolygonBezier() argument
[all …]

Completed in 99 milliseconds