diff options
author | thestig <thestig@chromium.org> | 2016-05-26 11:04:40 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-26 11:04:40 -0700 |
commit | d3e354a43531eaed87e43d9ff2df4525186ea28d (patch) | |
tree | fe4ddb4219e7027f200eb240f18fdabfd70a9a4c /core/fxge/include/fx_dib.h | |
parent | 41846a0fcc7d98476a18ec6c97778ead58069d99 (diff) | |
download | pdfium-d3e354a43531eaed87e43d9ff2df4525186ea28d.tar.xz |
Remove default arguments in CFX_RenderDevice.
Review-Url: https://codereview.chromium.org/2011943004
Diffstat (limited to 'core/fxge/include/fx_dib.h')
-rw-r--r-- | core/fxge/include/fx_dib.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/fxge/include/fx_dib.h b/core/fxge/include/fx_dib.h index a09f88453f..6504e5fd8f 100644 --- a/core/fxge/include/fx_dib.h +++ b/core/fxge/include/fx_dib.h @@ -154,11 +154,7 @@ 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_COLORTYPE(flag, val) \ - flag = (((val) << 8) | (flag & 0xffff00ff)) #define FXSETFLAG_ALPHA_FILL(flag, val) flag = ((val) | (flag & 0xffffff00)) -#define FXSETFLAG_ALPHA_STROKE(flag, val) \ - flag = (((val) << 16) | (flag & 0xff00ffff)) class CFX_DIBSource { public: |