Lines Matching refs:aPen
216 Gdiplus::Pen aPen( in drawLine() local
230 Gdiplus::Status hr = pGraphics->DrawLine( &aPen, in drawLine()
255 Gdiplus::Pen aPen( in drawBezier() local
269 Gdiplus::Status hr = pGraphics->DrawBezier( &aPen, in drawBezier()
301 Gdiplus::Pen aPen( in drawPolyPolygon() local
318 Gdiplus::Status hr = pGraphics->DrawPath( &aPen, pPath.get() ); in drawPolyPolygon()
350 Gdiplus::Pen aPen( in strokePolyPolygon() local
368 aPen.SetMiterLimit( static_cast< Gdiplus::REAL >(strokeAttributes.MiterLimit) ); in strokePolyPolygon()
375 aPen.SetDashPattern( &rDashArray[0], in strokePolyPolygon()
378 aPen.SetLineCap( gdiCapFromCap(strokeAttributes.StartCapType), in strokePolyPolygon()
382 aPen.SetLineJoin( gdiJoinFromJoin(strokeAttributes.JoinType) ); in strokePolyPolygon()
387 Gdiplus::Status hr = pGraphics->DrawPath( &aPen, pPath.get() ); in strokePolyPolygon()