diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-03-21 11:40:28 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-03-21 11:40:28 -0700 |
commit | 69bbb0010cb83a7fa63d0901df6aef1de0ccfc0c (patch) | |
tree | 50d17b3602978de1a084ca76d91a72d7abfe8f81 /core/include | |
parent | d4e8f1222ca17b57ac74019b2fc3706e1192645c (diff) | |
download | pdfium-69bbb0010cb83a7fa63d0901df6aef1de0ccfc0c.tar.xz |
Remove unused FXDIB_PALETTE_ options
The only one that is ever used is FXDIB_PALETTE_loc, so remove
the option entirely. In turn, this allows deleting about 2KB
of unused constant tables.
R=ochang@chromium.org
Review URL: https://codereview.chromium.org/1809943007 .
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/fxge/fx_dib.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/include/fxge/fx_dib.h b/core/include/fxge/fx_dib.h index 43746e5d48..837e5d5f7e 100644 --- a/core/include/fxge/fx_dib.h +++ b/core/include/fxge/fx_dib.h @@ -41,9 +41,6 @@ enum FXDIB_Channel { #define FXDIB_INTERPOL 0x20 #define FXDIB_BICUBIC_INTERPOL 0x80 #define FXDIB_NOSMOOTH 0x100 -#define FXDIB_PALETTE_LOC 0x01 -#define FXDIB_PALETTE_WIN 0x02 -#define FXDIB_PALETTE_MAC 0x04 #define FXDIB_BLEND_NORMAL 0 #define FXDIB_BLEND_MULTIPLY 1 #define FXDIB_BLEND_SCREEN 2 |