diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-17 15:13:38 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-17 15:13:38 +0000 |
commit | f22d4206c768856efdfbf0ec38af4386a706de3a (patch) | |
tree | 13b1918762a820760f4aa5f1d5e5544d13fa9b6a /xfa/fxfa/cxfa_imagerenderer.h | |
parent | 6fded218eec8667a1c8dcd467645c31eee3c8a2f (diff) | |
download | pdfium-f22d4206c768856efdfbf0ec38af4386a706de3a.tar.xz |
Fold CXFA_ImageRenderer::Start into constructor
This CL moves the code to initialize the variables into the constructor
and changes the Start command into the StartDIB command.
Change-Id: Iba3c1dcd9a872b4e2a1eadf87050f39c73b8e704
Reviewed-on: https://pdfium-review.googlesource.com/23050
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_imagerenderer.h')
-rw-r--r-- | xfa/fxfa/cxfa_imagerenderer.h | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/xfa/fxfa/cxfa_imagerenderer.h b/xfa/fxfa/cxfa_imagerenderer.h index ca53bf639e..6a165b53e4 100644 --- a/xfa/fxfa/cxfa_imagerenderer.h +++ b/xfa/fxfa/cxfa_imagerenderer.h @@ -21,20 +21,18 @@ class CFX_ImageRenderer; class CXFA_ImageRenderer { public: - CXFA_ImageRenderer(); + CXFA_ImageRenderer(CFX_RenderDevice* pDevice, + const RetainPtr<CFX_DIBSource>& pDIBSource, + FX_ARGB bitmap_argb, + int bitmap_alpha, + const CFX_Matrix* pImage2Device, + uint32_t flags); ~CXFA_ImageRenderer(); - bool Start(CFX_RenderDevice* pDevice, - const RetainPtr<CFX_DIBSource>& pDIBSource, - FX_ARGB bitmap_argb, - int bitmap_alpha, - const CFX_Matrix* pImage2Device, - uint32_t flags, - int blendType = FXDIB_BLEND_NORMAL); + bool Start(); bool Continue(); protected: - bool StartDIBSource(); void CompositeDIBitmap(const RetainPtr<CFX_DIBitmap>& pDIBitmap, int left, int top, @@ -48,9 +46,9 @@ class CXFA_ImageRenderer { CFX_Matrix m_ImageMatrix; RetainPtr<CFX_DIBSource> m_pDIBSource; RetainPtr<CFX_DIBitmap> m_pCloneConvert; - int m_BitmapAlpha = 255; - FX_ARGB m_FillArgb = 0; - uint32_t m_Flags = 0; + int m_BitmapAlpha; + FX_ARGB m_FillArgb; + uint32_t m_Flags; std::unique_ptr<CFX_ImageTransformer> m_pTransformer; std::unique_ptr<CFX_ImageRenderer> m_DeviceHandle; int32_t m_BlendType = FXDIB_BLEND_NORMAL; |