Home | History | Annotate | Download | only in win32

Lines Matching refs:pGraphState

722 static GpPen* _GdipCreatePen(const CFX_GraphStateData* pGraphState, const CFX_AffineMatrix* pMatrix, DWORD argb, FX_BOOL bTextMode = FALSE)

725 FX_FLOAT width = pGraphState ? pGraphState->m_LineWidth : 1.0f;
737 switch(pGraphState->m_LineCap) {
753 switch(pGraphState->m_LineJoin) {
765 if(pGraphState->m_DashCount) {
766 FX_FLOAT* pDashArray = FX_Alloc(FX_FLOAT, pGraphState->m_DashCount + pGraphState->m_DashCount % 2);
772 for (int i = 0; i < pGraphState->m_DashCount; i += 2) {
773 FX_FLOAT on_phase = pGraphState->m_DashArray[i];
775 if (i == pGraphState->m_DashCount - 1) {
778 off_phase = pGraphState->m_DashArray[i + 1];
810 FX_FLOAT phase = pGraphState->m_DashPhase;
821 CallFunc(GdipSetPenMiterLimit)(pPen, pGraphState->m_MiterLimit);
849 const CFX_GraphStateData* pGraphState,
946 if (bSmooth || pGraphState && pGraphState->m_LineWidth > 2) {
951 if (nPoints == 4 && pGraphState == NULL) {
979 if (pGraphState && stroke_argb) {
980 GpPen* pPen = _GdipCreatePen(pGraphState, pObject2Device, stroke_argb, fill_mode & FX_STROKE_TEXT_MODE);