HomeSort by relevance Sort by last modified time
    Searched full:pmatrix (Results 1 - 25 of 47) sorted by null

1 2

  /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)
595 if (pMatrix)
596 scale = FXSYS_fabs(pMatrix->a) > FXSYS_fabs(pMatrix->b) ?
597 FXSYS_fabs(pMatrix->a) : FXSYS_fabs(pMatrix->b);
648 pDash[i] = FXSYS_round(pMatrix ? pMatrix->TransformDistance(pGraphState->m_DashArray[i]) : pGraphState->m_DashArray[i]);
667 static void _SetPathToDC(HDC hDC, const CFX_PathData* pPathData, const CFX_AffineMatrix* pMatrix)
674 if (pMatrix) {
    [all...]
fx_win32_dwrite.cpp 98 __in_opt DWRITE_MATRIX const* pMatrix,
226 FX_BOOL CDWriteExt::DwRendingString(void* renderTarget, CFX_ClipRgn* pClipRgn, FX_RECT& stringRect, CFX_AffineMatrix* pMatrix,
240 if (pMatrix) {
241 transform.m11 = pMatrix->a;
242 transform.m12 = pMatrix->b;
243 transform.m21 = pMatrix->c;
244 transform.m22 = pMatrix->d;
245 transform.dx = pMatrix->e;
246 transform.dy = pMatrix->f;
259 pMatrix ? &transform : NULL,
    [all...]
fx_win32_print.cpp 201 const CFX_AffineMatrix* pMatrix, FX_DWORD render_flags, FX_LPVOID& handle,
207 CFX_FloatRect unit_rect = pMatrix->GetUnitRect();
209 if (FXSYS_fabs(pMatrix->b) < 0.5f && pMatrix->a != 0 && FXSYS_fabs(pMatrix->c) < 0.5f && pMatrix->d != 0) {
210 FX_BOOL bFlipX = pMatrix->a < 0;
211 FX_BOOL bFlipY = pMatrix->d > 0;
216 if (FXSYS_fabs(pMatrix->a) < 0.5f && FXSYS_fabs(pMatrix->d) < 0.5f) {
    [all...]
dwrite_int.h 45 FX_BOOL DwRendingString(void* renderTarget, CFX_ClipRgn* pClipRgn, FX_RECT& stringRect, CFX_AffineMatrix* pMatrix,
win32_int.h 36 void GdipSetWorldTransform(void* graphics, void* pMatrix);
141 const CFX_AffineMatrix* pMatrix, FX_DWORD render_flags, FX_LPVOID& handle,
162 const CFX_AffineMatrix* pMatrix, FX_DWORD render_flags, FX_LPVOID& handle,
222 const CFX_AffineMatrix* pMatrix, FX_DWORD render_flags, FX_LPVOID& handle,
fx_win32_gdipext.cpp 670 void CGdiplusExt::GdipSetWorldTransform(void* graphics, void* pMatrix)
673 CallFunc(GdipSetWorldTransform)((GpGraphics*)graphics, (GpMatrix*)pMatrix);
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_text.cpp     [all...]
fx_ge_path.cpp 183 FX_BOOL CFX_PathData::Append(const CFX_PathData* pSrc, const CFX_AffineMatrix* pMatrix)
190 if (pMatrix == NULL) {
194 pMatrix->Transform(m_pPoints[old_count + i].m_PointX, m_pPoints[old_count + i].m_PointY);
399 void CFX_PathData::Transform(const CFX_AffineMatrix* pMatrix)
401 if (pMatrix == NULL) {
405 pMatrix->Transform(m_pPoints[i].m_PointX, m_pPoints[i].m_PointY);
409 FX_BOOL CFX_PathData::GetZeroAreaPath(CFX_PathData& NewPath, CFX_AffineMatrix* pMatrix, FX_BOOL&bThin, FX_BOOL bAdjust) const
419 if (pMatrix) {
421 pMatrix->TransformPoint(x, y);
426 pMatrix->TransformPoint(x, y);
    [all...]
fx_ge_ps.cpp 326 const CFX_AffineMatrix* pMatrix, FX_DWORD flags,
330 if ((pMatrix->a == 0 && pMatrix->b == 0) || (pMatrix->c == 0 && pMatrix->d == 0)) {
342 buf << FX_BSTRC("[") << pMatrix->a << FX_BSTRC(" ") << pMatrix->b << FX_BSTRC(" ") <<
343 pMatrix->c << FX_BSTRC(" ") << pMatrix->d << FX_BSTRC(" ") << pMatrix->e <<
    [all...]
fx_ge_device.cpp 208 CFX_AffineMatrix* pMatrix = NULL;
210 pMatrix = (CFX_AffineMatrix*)pObject2Device;
216 m_pDeviceDriver->DrawPath(&newPath, pMatrix, &graphState, 0, strokecolor, smooth_path, alpha_flag, pIccTransform, blend_type);
393 const CFX_AffineMatrix* pMatrix, FX_DWORD flags, FX_LPVOID& handle,
396 return m_pDeviceDriver->StartDIBits(pBitmap, bitmap_alpha, argb, pMatrix, flags, handle, alpha_flag, pIccTransform, blend_mode);
  /external/pdfium/core/src/reflow/
reflowedpage.h 58 void CreateRFData(CPDF_PageObject* pObj, CFX_AffineMatrix* pMatrix = NULL);
63 void Transform(const CFX_AffineMatrix* pMatrix, CRF_Data* pData);
64 void Transform(const CFX_AffineMatrix* pMatrix, CRF_DataPtrArray* pDataArray, int beginPos, int count = 0);
243 void Start(IPDF_ReflowedPage* pReflowPage, CFX_RenderDevice* pDevice, const CFX_AffineMatrix* pMatrix, IFX_Pause* pPause, int DitherBits);
layoutprocessor_reflow.cpp 834 void CPDF_LayoutProcessor_Reflow::Transform(const CFX_AffineMatrix* pMatrix, CRF_DataPtrArray* pDataArray, int beginPos, int count)
846 Transform(pMatrix, pData);
849 void CPDF_LayoutProcessor_Reflow::Transform(const CFX_AffineMatrix* pMatrix, CRF_Data* pData)
853 pPathData->m_pPath2Device.Concat(*pMatrix);
855 pMatrix->Transform(pData->m_PosX, pData->m_PosY, pData->m_PosX, pData->m_PosY);
981 FX_FLOAT* pmatrix = pTextObj->m_TextState.GetMatrix(); local
1495 FX_FLOAT* pmatrix = pTextObj->m_TextState.GetMatrix(); local
    [all...]
  /external/pdfium/core/include/fxge/
fx_font.h 383 const CFX_GlyphBitmap* LoadGlyphBitmap(CFX_Font* pFont, FX_DWORD glyph_index, FX_BOOL bFontStyle, const CFX_AffineMatrix* pMatrix,
392 const CFX_AffineMatrix* pMatrix, int dest_width, int anti_alias);
394 const CFX_AffineMatrix* pMatrix, int dest_width, int anti_alias);
395 CFX_GlyphBitmap* LookUpGlyphBitmap(CFX_Font* pFont, const CFX_AffineMatrix* pMatrix, CFX_ByteStringC& FaceGlyphsKey,
418 CFX_AffineMatrix* pMatrix, unsigned long glyph_index, unsigned long argb);
fx_ge.h 199 void Transform(const CFX_AffineMatrix* pMatrix);
203 FX_BOOL GetZeroAreaPath(CFX_PathData& NewPath, CFX_AffineMatrix* pMatrix, FX_BOOL&bThin, FX_BOOL bAdjust) const;
205 FX_BOOL IsRect(const CFX_AffineMatrix* pMatrix, CFX_FloatRect* rect) const;
207 FX_BOOL Append(const CFX_PathData* pSrc, const CFX_AffineMatrix* pMatrix);
430 const CFX_AffineMatrix* pMatrix, FX_DWORD flags, FX_LPVOID& handle,
608 const CFX_AffineMatrix* pMatrix, FX_DWORD flags, FX_LPVOID& handle,
694 const CFX_AffineMatrix* pMatrix, FX_DWORD flags,
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_text.cpp 24 CFX_GlyphBitmap* CPDF_Type3Cache::LoadGlyph(FX_DWORD charcode, const CFX_AffineMatrix* pMatrix, FX_FLOAT retinaScaleX, FX_FLOAT retinaScaleY)
27 keygen.Generate(4, FXSYS_round(pMatrix->a * 10000), FXSYS_round(pMatrix->b * 10000),
28 FXSYS_round(pMatrix->c * 10000), FXSYS_round(pMatrix->d * 10000));
39 pGlyphBitmap = RenderGlyph(pSizeCache, charcode, pMatrix, retinaScaleX, retinaScaleY);
125 CFX_GlyphBitmap* CPDF_Type3Cache::RenderGlyph(CPDF_Type3Glyphs* pSize, FX_DWORD charcode, const CFX_AffineMatrix* pMatrix, FX_FLOAT retinaScaleX, FX_FLOAT retinaScaleY)
134 text_matrix.Set(pMatrix->a, pMatrix->b, pMatrix->c, pMatrix->d, 0, 0);
    [all...]
render_int.h 36 CFX_GlyphBitmap* LoadGlyph(FX_DWORD charcode, const CFX_AffineMatrix* pMatrix, FX_FLOAT retinaScaleX = 1.0f, FX_FLOAT retinaScaleY = 1.0f);
38 CFX_GlyphBitmap* RenderGlyph(CPDF_Type3Glyphs* pSize, FX_DWORD charcode, const CFX_AffineMatrix* pMatrix, FX_FLOAT retinaScaleX = 1.0f, FX_FLOAT retinaScaleY = 1.0f);
136 void DrawShading(CPDF_ShadingPattern* pPattern, CFX_AffineMatrix* pMatrix, FX_RECT& clip_rect,
146 CFX_DIBitmap* LoadSMask(CPDF_Dictionary* pSMaskDict, FX_RECT* pClipRect, const CFX_AffineMatrix* pMatrix);
  /external/pdfium/core/include/fpdfapi/
fpdf_pageobj.h 82 void Transform(const CFX_AffineMatrix* pMatrix)
84 GetModify()->Transform(pMatrix);
87 void Append(CPDF_Path src, const CFX_AffineMatrix* pMatrix)
89 m_pObject->Append(src.m_pObject, pMatrix);
485 FX_RECT GetBBox(const CFX_AffineMatrix* pMatrix) const;
552 void GetTextMatrix(CFX_AffineMatrix* pMatrix) const;
  /external/pdfium/core/include/reflow/
reflowengine.h 66 virtual void Start(IPDF_ReflowedPage* pReflowPage, CFX_RenderDevice* pDevice, const CFX_AffineMatrix* pMatrix, IFX_Pause* pPause, int DitherBits ) = 0;
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
invert.c 45 OPJ_FLOAT32* pMatrix,
208 OPJ_FLOAT32 * pMatrix,
222 OPJ_FLOAT32 * lLineMatrix = pMatrix;
246 lLineMatrix = pMatrix + nb_compo*nb_compo - 1;
mct.h 136 @param pMatrix components
141 OPJ_FLOAT32 * pMatrix);
  /external/pdfium/core/src/fxge/agg/include/
fx_agg_driver.h 87 const CFX_AffineMatrix* pMatrix, FX_DWORD flags, FX_LPVOID& handle,
  /external/pdfium/core/include/fpdfdoc/
fpdf_doc.h 682 CFX_AffineMatrix* pMatrix, FX_BOOL bShowWidget,
686 FX_BOOL bPrinting, CFX_AffineMatrix* pMatrix, FX_BOOL bShowWidget,
689 DisplayAnnots(pPage, NULL, pContext, bPrinting, pMatrix, bShowWidget ? 3 : 1, pOptions, NULL);
693 FX_BOOL bPrinting, CFX_AffineMatrix* pMatrix, FX_BOOL bShowWidget,
696 DisplayAnnots(pPage, NULL, pContext, bPrinting, pMatrix, bShowWidget ? 3 : 1, pOptions, pClipRect);
700 FX_BOOL bPrinting, CFX_AffineMatrix* pMatrix, FX_DWORD dwAnnotFlags,
733 CPDF_RenderContext* pContext, FX_BOOL bPrinting, CFX_AffineMatrix* pMatrix,
1371 void DrawControl(CFX_RenderDevice* pDevice, CFX_AffineMatrix* pMatrix,
    [all...]
  /external/libvorbis/doc/
Vorbis_I_spec.css 106 div.pmatrix {text-align:center;}
107 table.pmatrix {width:100%;}
108 span.pmatrix img{vertical-align:middle;}
109 div.pmatrix {text-align:center;}
110 table.pmatrix {width:100%;}
  /external/pdfium/core/src/fxge/agg/agg23/
agg_rasterizer_scanline_aa.h 383 void add_path_transformed(VertexSource& vs, const CFX_AffineMatrix* pMatrix, unsigned path_id = 0)
390 if (pMatrix) {
391 pMatrix->Transform(x, y);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2d1helper.h 412 static inline const Matrix3x2F *ReinterpretBaseType(const D2D1_MATRIX_3X2_F *pMatrix) {
413 return static_cast<const Matrix3x2F *>(pMatrix);
416 static inline Matrix3x2F *ReinterpretBaseType(D2D1_MATRIX_3X2_F *pMatrix) {
417 return static_cast<Matrix3x2F *>(pMatrix);

Completed in 2574 milliseconds

1 2