Bug 777614 - Re-add our SkUserConfig.h r=nrc

This commit is contained in:
George Wright 2012-09-13 22:33:38 -04:00
Родитель 2c79accd09
Коммит 7efeeb9229
1 изменённых файлов: 12 добавлений и 1 удалений

Просмотреть файл

@ -184,5 +184,16 @@
directories from your include search path when you're not building the GPU
backend. Defaults to 1 (build the GPU code).
*/
//#define SK_SUPPORT_GPU 1
#define SK_SUPPORT_GPU 0
/* Don't dither 32bit gradients, to match what the canvas test suite expects.
*/
#define SK_DISABLE_DITHER_32BIT_GRADIENT
/* 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