Bug 755869 - [6] Re-apply SkUserConfig (no original bug) r=mattwoodrow

This commit is contained in:
George Wright 2012-05-18 14:13:49 -04:00
parent f0f601eb3b
commit 991f57aa39

View File

@ -156,6 +156,10 @@
//#define SK_SUPPORT_UNITTEST
#endif
/* Don't dither 32bit gradients, to match what the canvas test suite expects.
*/
#define SK_DISABLE_DITHER_32BIT_GRADIENT
/* If your system embeds skia and has complex event logging, define this
symbol to name a file that maps the following macros to your system's
equivalents:
@ -177,4 +181,10 @@
#define SK_A32_SHIFT 24
#endif
/* Don't include stdint.h on windows as it conflicts with our build system.
*/
#ifdef SK_BUILD_FOR_WIN32
#define SK_IGNORE_STDINT_DOT_H
#endif
#endif