Home | History | Annotate | Download | only in fpdfdoc

Lines Matching refs:pGraphState

329     CPDF_GraphStateData *pGraphState = pPathObject->m_GraphState.GetModify();

330 if (!pGraphState) {
334 pGraphState->m_LineWidth = width;
349 pGraphState->m_DashArray = FX_Alloc(FX_FLOAT, dash_count);
350 if (pGraphState->m_DashArray == NULL) {
354 pGraphState->m_DashCount = dash_count;
357 pGraphState->m_DashArray[i] = pDashArray->GetNumber(i);
360 pGraphState->m_DashArray[i] = pGraphState->m_DashArray[i - 1];
363 pGraphState->m_DashArray = FX_Alloc(FX_FLOAT, 2);
364 if (pGraphState->m_DashArray == NULL) {
368 pGraphState->m_DashCount = 2;
369 pGraphState->m_DashArray[0] = pGraphState->m_DashArray[1] = 3 * 1.0f;