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

  /external/pdfium/fpdfsdk/src/
fpdfeditpage.cpp 236 const CPDF_GeneralStateData* pGeneralState = pPageObj->m_GeneralState;
237 int blend_type = pGeneralState ? pGeneralState->m_BlendType : FXDIB_BLEND_NORMAL;
240 CPDF_Dictionary* pSMaskDict = pGeneralState ? (CPDF_Dictionary*)pGeneralState->m_pSoftMask : NULL;
243 if(pGeneralState && pGeneralState->m_FillAlpha != 1.0f)
248 if(pGeneralState && pGeneralState->m_StrokeAlpha != 1.0f)
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_graph_state.cpp 480 CPDF_GeneralStateData* pGeneralState = m_GeneralState.GetModify();
532 pGeneralState->m_pTR = pObject;
534 pGeneralState->m_pTR = NULL;
544 pGeneralState->SetBlendMode(mode);
545 if (pGeneralState->m_BlendType > FXDIB_BLEND_MULTIPLY) {
552 pGeneralState->m_pSoftMask = pObject;
553 FXSYS_memcpy32(pGeneralState->m_SMaskMatrix, &pParser->m_pCurStates->m_CTM, sizeof(CPDF_Matrix));
555 pGeneralState->m_pSoftMask = NULL;
559 pGeneralState->m_StrokeAlpha = PDF_ClipFloat(pObject->GetNumber());
562 pGeneralState->m_FillAlpha = PDF_ClipFloat(pObject->GetNumber());
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_image.cpp 387 const CPDF_GeneralStateData* pGeneralState = m_pImageObject->m_GeneralState;
388 if (pGeneralState) {
389 m_BitmapAlpha = FXSYS_round(pGeneralState->m_FillAlpha * 255);
396 if (pGeneralState && pGeneralState->m_pTR) {
397 if (!pGeneralState->m_pTransferFunc) {
398 ((CPDF_GeneralStateData*)pGeneralState)->m_pTransferFunc = m_pRenderStatus->GetTransferFunc(pGeneralState->m_pTR);
400 if (pGeneralState->m_pTransferFunc && !pGeneralState->m_pTransferFunc->m_bIdentity) {
    [all...]
fpdf_render.cpp 753 const CPDF_GeneralStateData* pGeneralState = pPageObj->m_GeneralState;
754 int blend_type = pGeneralState ? pGeneralState->m_BlendType : FXDIB_BLEND_NORMAL;
758 CPDF_Dictionary* pSMaskDict = pGeneralState ? (CPDF_Dictionary*)pGeneralState->m_pSoftMask : NULL;
786 if ((m_Options.m_Flags & RENDER_OVERPRINT) && pPageObj->m_Type == PDFPAGE_IMAGE && pGeneralState && pGeneralState->m_FillOP && pGeneralState->m_StrokeOP) {
    [all...]

Completed in 40 milliseconds