diff options
author | dsinclair <dsinclair@chromium.org> | 2016-04-12 09:51:45 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-12 09:51:45 -0700 |
commit | 25c223d1c3a662a0e69a5bf95083afbd5fa3cd97 (patch) | |
tree | d1b6a27b093b969696c2697dd183deb21d8cb6bd /xfa/fde/fde_gedevice.h | |
parent | f9924422a4cd1d1b6d2d4240c83b5c1082da3629 (diff) | |
download | pdfium-25c223d1c3a662a0e69a5bf95083afbd5fa3cd97.tar.xz |
Only SolidBrush types are created, remove other brushes.
We only ever create a CFDE_SolidBrush, there is nothing which creates Texture,
Hatch or LinearGradient brushes. This Cl removes all the code that isn't
used for SolidBrush.
A followup Cl will rename SolidBrush to Brush and remove the Brush interface
in favour of the concrete class.
BUG=pdfium:468
Review URL: https://codereview.chromium.org/1877383002
Diffstat (limited to 'xfa/fde/fde_gedevice.h')
-rw-r--r-- | xfa/fde/fde_gedevice.h | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/xfa/fde/fde_gedevice.h b/xfa/fde/fde_gedevice.h index 68467395e6..c497b1c3b5 100644 --- a/xfa/fde/fde_gedevice.h +++ b/xfa/fde/fde_gedevice.h @@ -96,15 +96,7 @@ class CFDE_FxgeDevice : public IFDE_RenderDevice, public CFX_Target { FX_BOOL FillSolidPath(IFDE_Brush* pBrush, const CFX_PathData* pPath, const CFX_Matrix* pMatrix); - FX_BOOL FillHatchPath(IFDE_Brush* pBrush, - const CFX_PathData* pPath, - const CFX_Matrix* pMatrix); - FX_BOOL FillTexturePath(IFDE_Brush* pBrush, - const CFX_PathData* pPath, - const CFX_Matrix* pMatrix); - FX_BOOL FillLinearGradientPath(IFDE_Brush* pBrush, - const CFX_PathData* pPath, - const CFX_Matrix* pMatrix); + FX_BOOL DrawSolidString(IFDE_Brush* pBrush, IFX_Font* pFont, const FXTEXT_CHARPOS* pCharPos, @@ -122,10 +114,7 @@ class CFDE_FxgeDevice : public IFDE_RenderDevice, public CFX_Target { FX_BOOL CreatePen(IFDE_Pen* pPen, FX_FLOAT fPenWidth, CFX_GraphStateData& graphState); - FX_BOOL WrapTexture(int32_t iWrapMode, - const CFX_DIBitmap* pBitmap, - const CFX_PathData* pPath, - const CFX_Matrix* pMatrix); + CFX_RenderDevice* m_pDevice; CFX_RectF m_rtClip; FX_BOOL m_bOwnerDevice; |