diff options
author | thestig <thestig@chromium.org> | 2016-06-13 15:02:05 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-13 15:02:05 -0700 |
commit | 2f307669ded2621f87d0b019e508f6663523f1d7 (patch) | |
tree | 035cb0ad851aa008a4f3c27c365c40564ef69859 /core/fxge/include/fx_dib.h | |
parent | 868150bd69f0f1f9472affc20deea0a9341bf22b (diff) | |
download | pdfium-2f307669ded2621f87d0b019e508f6663523f1d7.tar.xz |
Remove default arguments from IFX_RenderDeviceDriver.
Review-Url: https://codereview.chromium.org/2059883004
Diffstat (limited to 'core/fxge/include/fx_dib.h')
-rw-r--r-- | core/fxge/include/fx_dib.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/fxge/include/fx_dib.h b/core/fxge/include/fx_dib.h index 4919ba70fe..b1108076a4 100644 --- a/core/fxge/include/fx_dib.h +++ b/core/fxge/include/fx_dib.h @@ -154,7 +154,6 @@ FX_ARGB ArgbEncode(int a, FX_COLORREF rgb); #define FXGETFLAG_COLORTYPE(flag) (uint8_t)((flag) >> 8) #define FXGETFLAG_ALPHA_FILL(flag) (uint8_t)(flag) #define FXGETFLAG_ALPHA_STROKE(flag) (uint8_t)((flag) >> 16) -#define FXSETFLAG_ALPHA_FILL(flag, val) flag = ((val) | (flag & 0xffffff00)) class CFX_DIBSource { public: |