diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-10-30 12:38:29 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-10-30 12:38:29 -0700 |
commit | b04d1cc8f025ad38fcfacfa002a0c514dc9d5c46 (patch) | |
tree | aad1368e62f91961302f65480e21c877f79aa088 /core | |
parent | de4791d291b4252045d7922fb838c64d9b711fdf (diff) | |
download | pdfium-b04d1cc8f025ad38fcfacfa002a0c514dc9d5c46.tar.xz |
XFA: remove unused GdiCombineMode2Gdip() [windows]
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1428713004 .
Diffstat (limited to 'core')
-rw-r--r-- | core/src/fxge/win32/fx_win32_gdipext.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/core/src/fxge/win32/fx_win32_gdipext.cpp b/core/src/fxge/win32/fx_win32_gdipext.cpp index cae6c67823..4beef9a177 100644 --- a/core/src/fxge/win32/fx_win32_gdipext.cpp +++ b/core/src/fxge/win32/fx_win32_gdipext.cpp @@ -25,13 +25,6 @@ using namespace Gdiplus::DllExports; #define GdiFillType2Gdip(fill_type) \ (fill_type == ALTERNATE ? FillModeAlternate : FillModeWinding) -static CombineMode GdiCombineMode2Gdip(int mode) { - switch (mode) { - case RGN_AND: - return CombineModeIntersect; - } - return CombineModeIntersect; -} enum { FuncId_GdipCreatePath2, FuncId_GdipSetPenDashStyle, |