Home | History | Annotate | Download | only in fde

Lines Matching refs:pPen

207 bool CFDE_RenderDevice::DrawBezier(CFDE_Pen* pPen,
221 return DrawPath(pPen, fPenWidth, &path, pMatrix);
224 bool CFDE_RenderDevice::DrawCurve(CFDE_Pen* pPen,
232 return DrawPath(pPen, fPenWidth, &path, pMatrix);
235 bool CFDE_RenderDevice::DrawEllipse(CFDE_Pen* pPen,
241 return DrawPath(pPen, fPenWidth, &path, pMatrix);
244 bool CFDE_RenderDevice::DrawLines(CFDE_Pen* pPen,
250 return DrawPath(pPen, fPenWidth, &path, pMatrix);
253 bool CFDE_RenderDevice::DrawLine(CFDE_Pen* pPen,
260 return DrawPath(pPen, fPenWidth, &path, pMatrix);
263 bool CFDE_RenderDevice::DrawPath(CFDE_Pen* pPen,
272 if (!CreatePen(pPen, fPenWidth, graphState)) {
276 &graphState, 0, pPen->GetColor(), 0);
279 bool CFDE_RenderDevice::DrawPolygon(CFDE_Pen* pPen,
285 return DrawPath(pPen, fPenWidth, &path, pMatrix);
288 bool CFDE_RenderDevice::DrawRectangle(CFDE_Pen* pPen,
294 return DrawPath(pPen, fPenWidth, &path, pMatrix);
330 bool CFDE_RenderDevice::CreatePen(CFDE_Pen* pPen,
333 if (!pPen)