diff options
author | Lei Zhang <thestig@chromium.org> | 2018-03-15 15:06:11 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-03-15 15:06:11 +0000 |
commit | c2d9e2d00ee871fa538bc46c8209e98ab9a30c44 (patch) | |
tree | e2d97c232971510f74bbf1a6d6e25045592c56b4 /xfa | |
parent | 9875889910585b08d2abd372ddc95469baf1a7e9 (diff) | |
download | pdfium-c2d9e2d00ee871fa538bc46c8209e98ab9a30c44.tar.xz |
Rename FX_COLORREF variables from "rgb" to "bgr".
FX_COLORREF should work like win32 COLORREF, which is BGR.
Change-Id: I9f8bb3e2d30a64dc822ac6b8c46130358a03678a
Reviewed-on: https://pdfium-review.googlesource.com/28574
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'xfa')
-rw-r--r-- | xfa/fxfa/parser/cxfa_stipple.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/parser/cxfa_stipple.cpp b/xfa/fxfa/parser/cxfa_stipple.cpp index 3b4b2597cf..6f15badac9 100644 --- a/xfa/fxfa/parser/cxfa_stipple.cpp +++ b/xfa/fxfa/parser/cxfa_stipple.cpp @@ -62,9 +62,9 @@ void CXFA_Stipple::Draw(CXFA_Graphics* pGS, FX_ARGB crColor = pColor ? pColor->GetValue() : CXFA_Color::kBlackColor; int32_t a; - FX_COLORREF rgb; - std::tie(a, rgb) = ArgbToColorRef(crColor); - FX_ARGB cr = ArgbEncode(iRate * a / 100, rgb); + FX_COLORREF bgr; + std::tie(a, bgr) = ArgbToColorRef(crColor); + FX_ARGB cr = ArgbEncode(iRate * a / 100, bgr); pGS->SaveGraphState(); pGS->SetFillColor(CXFA_GEColor(cr)); |