diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-17 15:14:47 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-17 15:14:47 +0000 |
commit | 8bd669bb535895814c5eb79716ed67f67e1d76b5 (patch) | |
tree | 3834653e2d0ec45f1cd647a9809593a150705f68 /xfa/fxfa/cxfa_ffwidget.cpp | |
parent | 8fc7dc6da9356e57f7318bff54e77fe567c5c6a1 (diff) | |
download | pdfium-8bd669bb535895814c5eb79716ed67f67e1d76b5.tar.xz |
Remove bitmap ARGB from CFX_ImageRenderer
This CL removes the fill ARGB value from CFX_ImageRenderer which is
always set to 0.
Change-Id: I445abd6268c14f05184988177b2fa6b80f50d41d
Reviewed-on: https://pdfium-review.googlesource.com/23052
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_ffwidget.cpp')
-rw-r--r-- | xfa/fxfa/cxfa_ffwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/cxfa_ffwidget.cpp b/xfa/fxfa/cxfa_ffwidget.cpp index 34965236f9..f6806f6841 100644 --- a/xfa/fxfa/cxfa_ffwidget.cpp +++ b/xfa/fxfa/cxfa_ffwidget.cpp @@ -1091,7 +1091,7 @@ void XFA_DrawImage(CXFA_Graphics* pGS, CFX_Matrix(rtFit.width, 0, 0, rtFit.height, rtFit.left, rtFit.top)); mtImage.Concat(matrix); - CXFA_ImageRenderer imageRender(pRenderDevice, pDIBitmap, 0, &mtImage, + CXFA_ImageRenderer imageRender(pRenderDevice, pDIBitmap, &mtImage, FXDIB_INTERPOL); if (!imageRender.Start()) { return; |