HomeSort by relevance Sort by last modified time
    Searched refs:pGraphState (Results 1 - 14 of 14) sorted by null

  /external/pdfium/core/src/fpdfdoc/
doc_annot.cpp 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);
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_ps.cpp 156 const CFX_GraphStateData* pGraphState
160 SetGraphState(pGraphState);
169 CFX_FloatRect rect = pPathData->GetBoundingBox(pGraphState->m_LineWidth, pGraphState->m_MiterLimit);
180 const CFX_GraphStateData* pGraphState,
201 SetGraphState(pGraphState);
238 void CFX_PSRenderer::SetGraphState(const CFX_GraphStateData* pGraphState)
241 if (!m_bGraphStateSet || m_CurGraphState.m_LineCap != pGraphState->m_LineCap) {
242 buf << pGraphState->m_LineCap << FX_BSTRC(" J\n");
244 if (!m_bGraphStateSet || m_CurGraphState.m_DashCount != pGraphState->m_DashCount ||
    [all...]
fx_ge_device.cpp 93 const CFX_GraphStateData* pGraphState
96 if (!m_pDeviceDriver->SetClip_PathStroke(pPathData, pObject2Device, pGraphState)) {
124 const CFX_GraphStateData* pGraphState,
139 if (pGraphState == NULL) {
224 if (pGraphState) {
225 bbox = pPathData->GetBoundingBox(pGraphState->m_LineWidth, pGraphState->m_MiterLimit);
257 if (!bitmap_device.GetDeviceDriver()->DrawPath(pPathData, &matrix, pGraphState, fill_color, stroke_color, fill_mode, alpha_flag, pIccTransform, blend_type)) {
263 return m_pDeviceDriver->DrawPath(pPathData, pObject2Device, pGraphState, fill_color, stroke_color, fill_mode, alpha_flag, pIccTransform, blend_type);
fx_ge_text.cpp     [all...]
  /external/pdfium/core/src/fxge/win32/
fx_win32_device.cpp 591 static HPEN _CreatePen(const CFX_GraphStateData* pGraphState, const CFX_AffineMatrix* pMatrix, FX_DWORD argb)
598 if (pGraphState) {
599 width = scale * pGraphState->m_LineWidth;
607 if(pGraphState->m_DashCount) {
612 switch(pGraphState->m_LineCap) {
623 switch(pGraphState->m_LineJoin) {
642 if (pGraphState->m_DashCount) {
643 pDash = FX_Alloc(FX_DWORD, pGraphState->m_DashCount);
647 for (int i = 0; i < pGraphState->m_DashCount; i ++) {
648 pDash[i] = FXSYS_round(pMatrix ? pMatrix->TransformDistance(pGraphState->m_DashArray[i]) : pGraphState->m_DashArray[i]);
    [all...]
win32_int.h 24 const CFX_GraphStateData* pGraphState,
89 const CFX_GraphStateData* pGraphState
93 const CFX_GraphStateData* pGraphState,
203 const CFX_GraphStateData* pGraphState
207 const CFX_GraphStateData* pGraphState,
fx_win32_gdipext.cpp     [all...]
fx_win32_print.cpp 370 const CFX_GraphStateData* pGraphState)
372 m_PSRenderer.SetClip_PathStroke(pPathData, pObject2Device, pGraphState);
377 const CFX_GraphStateData* pGraphState, FX_ARGB fill_color, FX_ARGB stroke_color,
383 return m_PSRenderer.DrawPath(pPathData, pObject2Device, pGraphState, fill_color, stroke_color, fill_mode & 3, alpha_flag, pIccTransform);
  /external/pdfium/core/include/fxge/
fx_ge.h 390 const CFX_GraphStateData* pGraphState
395 const CFX_GraphStateData* pGraphState,
446 const CFX_AffineMatrix* pUser2Device, const CFX_GraphStateData* pGraphState,
553 const CFX_GraphStateData* pGraphState
561 const CFX_GraphStateData* pGraphState,
668 const CFX_GraphStateData* pGraphState
678 const CFX_GraphStateData* pGraphState,
725 void SetGraphState(const CFX_GraphStateData* pGraphState);
  /external/pdfium/core/src/fxge/agg/include/
fx_agg_driver.h 43 const CFX_GraphStateData* pGraphState
49 const CFX_GraphStateData* pGraphState,
  /external/pdfium/core/include/fpdfapi/
fpdf_render.h 221 const CFX_GraphStateData* pGraphState = NULL,
228 const CFX_GraphStateData* pGraphState,
  /external/pdfium/core/src/fxge/apple/
apple_int.h 113 const CFX_GraphStateData* pGraphState
117 const CFX_GraphStateData* pGraphState,
  /external/pdfium/core/src/fxge/agg/agg23/
fx_agg_driver.cpp 121 const CFX_GraphStateData* pGraphState, FX_FLOAT scale = 1.0f,
125 switch (pGraphState->m_LineCap) {
137 switch (pGraphState->m_LineJoin) {
148 FX_FLOAT width = pGraphState->m_LineWidth * scale;
156 if (pGraphState->m_DashArray == NULL) {
160 stroke.miter_limit(pGraphState->m_MiterLimit);
166 for (int i = 0; i < (pGraphState->m_DashCount + 1) / 2; i ++) {
167 FX_FLOAT on = pGraphState->m_DashArray[i * 2];
171 FX_FLOAT off = i * 2 + 1 == pGraphState->m_DashCount ? on :
172 pGraphState->m_DashArray[i * 2 + 1]
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 596 const CFX_GraphStateData* pGraphState,
604 pGraphState, fill_argb, stroke_argb, pClippingPath, nFlag);
619 FX_ARGB stroke_argb, const CFX_GraphStateData* pGraphState, const CPDF_RenderOptions* pOptions)
656 DrawTextPath(pDevice, nChars, pCharCodes, pCharPos, pFont, font_size, &matrix, NULL, pGraphState,

Completed in 482 milliseconds