michael@0: From ef53776c06cffc7607c3777702f93e04c0852981 Mon Sep 17 00:00:00 2001 michael@0: From: George Wright michael@0: Date: Fri, 18 May 2012 14:13:49 -0400 michael@0: Subject: [PATCH 03/10] Bug 755869 - [6] Re-apply SkUserConfig (no michael@0: original bug) r=mattwoodrow michael@0: michael@0: --- michael@0: gfx/skia/include/config/SkUserConfig.h | 10 ++++++++++ michael@0: 1 files changed, 10 insertions(+), 0 deletions(-) michael@0: michael@0: diff --git a/gfx/skia/include/config/SkUserConfig.h b/gfx/skia/include/config/SkUserConfig.h michael@0: index 9fdbd0a..f98ba85 100644 michael@0: --- a/gfx/skia/include/config/SkUserConfig.h michael@0: +++ b/gfx/skia/include/config/SkUserConfig.h michael@0: @@ -156,6 +156,10 @@ michael@0: //#define SK_SUPPORT_UNITTEST michael@0: #endif michael@0: michael@0: +/* Don't dither 32bit gradients, to match what the canvas test suite expects. michael@0: + */ michael@0: +#define SK_DISABLE_DITHER_32BIT_GRADIENT michael@0: + michael@0: /* If your system embeds skia and has complex event logging, define this michael@0: symbol to name a file that maps the following macros to your system's michael@0: equivalents: michael@0: @@ -177,4 +181,10 @@ michael@0: #define SK_A32_SHIFT 24 michael@0: #endif michael@0: michael@0: +/* Don't include stdint.h on windows as it conflicts with our build system. michael@0: + */ michael@0: +#ifdef SK_BUILD_FOR_WIN32 michael@0: + #define SK_IGNORE_STDINT_DOT_H michael@0: +#endif michael@0: + michael@0: #endif michael@0: -- michael@0: 1.7.5.4 michael@0: