Home
last modified time | relevance | path

Searched refs:m_pTransferFunc (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_graph_state.cpp346 if (src.m_pTransferFunc && src.m_pTransferFunc->m_pPDFDoc) { in CPDF_GeneralStateData()
348 src.m_pTransferFunc->m_pPDFDoc->GetRenderData(); in CPDF_GeneralStateData()
352 m_pTransferFunc = pDocCache->GetTransferFunc(m_pTR); in CPDF_GeneralStateData()
356 if (m_pTransferFunc && m_pTransferFunc->m_pPDFDoc) { in ~CPDF_GeneralStateData()
357 CPDF_DocRenderData* pDocCache = m_pTransferFunc->m_pPDFDoc->GetRenderData(); in ~CPDF_GeneralStateData()
/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render.cpp567 if (!pGeneralData->m_pTransferFunc) { in GetFillArgb()
568 ((CPDF_GeneralStateData*)pGeneralData)->m_pTransferFunc = in GetFillArgb()
571 if (pGeneralData->m_pTransferFunc) { in GetFillArgb()
572 rgb = pGeneralData->m_pTransferFunc->TranslateColor(rgb); in GetFillArgb()
601 if (!pGeneralData->m_pTransferFunc) { in GetStrokeArgb()
602 ((CPDF_GeneralStateData*)pGeneralData)->m_pTransferFunc = in GetStrokeArgb()
605 if (pGeneralData->m_pTransferFunc) { in GetStrokeArgb()
606 rgb = pGeneralData->m_pTransferFunc->TranslateColor(rgb); in GetStrokeArgb()
Dfpdf_render_image.cpp358 if (!pGeneralState->m_pTransferFunc) { in StartRenderDIBSource()
359 ((CPDF_GeneralStateData*)pGeneralState)->m_pTransferFunc = in StartRenderDIBSource()
362 if (pGeneralState->m_pTransferFunc && in StartRenderDIBSource()
363 !pGeneralState->m_pTransferFunc->m_bIdentity) { in StartRenderDIBSource()
365 pGeneralState->m_pTransferFunc->TranslateImage(m_Loader.m_pBitmap, in StartRenderDIBSource()
/external/pdfium/core/include/fpdfapi/
Dfpdf_pageobj.h223 CPDF_TransferFunc* m_pTransferFunc; variable