2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2006 The Android Open Source Project
|
2008-12-17 15:59:43 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
#ifndef SkUserConfig_DEFINED
|
|
|
|
#define SkUserConfig_DEFINED
|
|
|
|
|
2020-02-05 16:17:57 +00:00
|
|
|
/* SkTypes.h, the root of the public header files, includes this file
|
|
|
|
SkUserConfig.h after first initializing certain Skia defines, letting
|
|
|
|
this file change or augment those flags.
|
2009-01-08 17:49:50 +00:00
|
|
|
|
|
|
|
Below are optional defines that add, subtract, or change default behavior
|
|
|
|
in Skia. Your port can locally edit this file to enable/disable flags as
|
|
|
|
you choose, or these can be delared on your command line (i.e. -Dfoo).
|
|
|
|
|
|
|
|
By default, this include file will always default to having all of the flags
|
|
|
|
commented out, so including it will have no effect.
|
|
|
|
*/
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2009-01-08 17:49:50 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2009-01-08 17:49:50 +00:00
|
|
|
/* Skia has lots of debug-only code. Often this is just null checks or other
|
|
|
|
parameter checking, but sometimes it can be quite intrusive (e.g. check that
|
|
|
|
each 32bit pixel is in premultiplied form). This code can be very useful
|
|
|
|
during development, but will slow things down in a shipping product.
|
2011-01-28 22:19:22 +00:00
|
|
|
|
2020-02-05 16:17:57 +00:00
|
|
|
By default, these mutually exclusive flags are defined in SkTypes.h,
|
2009-01-08 17:49:50 +00:00
|
|
|
based on the presence or absence of NDEBUG, but that decision can be changed
|
|
|
|
here.
|
|
|
|
*/
|
|
|
|
//#define SK_DEBUG
|
|
|
|
//#define SK_RELEASE
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2009-01-08 17:49:50 +00:00
|
|
|
/* To write debug messages to a console, skia will call SkDebugf(...) following
|
|
|
|
printf conventions (e.g. const char* format, ...). If you want to redirect
|
|
|
|
this to something other than printf, define yours here
|
|
|
|
*/
|
|
|
|
//#define SkDebugf(...) MyFunction(__VA_ARGS__)
|
|
|
|
|
2011-11-08 13:48:32 +00:00
|
|
|
/*
|
|
|
|
* To specify a different default font cache limit, define this. If this is
|
|
|
|
* undefined, skia will use a built-in value.
|
|
|
|
*/
|
|
|
|
//#define SK_DEFAULT_FONT_CACHE_LIMIT (1024 * 1024)
|
|
|
|
|
2013-07-23 19:13:54 +00:00
|
|
|
/*
|
|
|
|
* To specify the default size of the image cache, undefine this and set it to
|
|
|
|
* the desired value (in bytes). SkGraphics.h as a runtime API to set this
|
|
|
|
* value as well. If this is undefined, a built-in value will be used.
|
|
|
|
*/
|
|
|
|
//#define SK_DEFAULT_IMAGE_CACHE_LIMIT (1024 * 1024)
|
|
|
|
|
2011-09-13 17:20:30 +00:00
|
|
|
/* Define this to set the upper limit for text to support LCD. Values that
|
|
|
|
are very large increase the cost in the font cache and draw slower, without
|
|
|
|
improving readability. If this is undefined, Skia will use its default
|
|
|
|
value (e.g. 48)
|
|
|
|
*/
|
|
|
|
//#define SK_MAX_SIZE_FOR_LCDTEXT 48
|
|
|
|
|
2019-04-24 16:42:40 +00:00
|
|
|
/* Change the kN32_SkColorType ordering to BGRA to work in X windows.
|
2011-03-18 21:43:03 +00:00
|
|
|
*/
|
2019-04-24 16:42:40 +00:00
|
|
|
//#define SK_R32_SHIFT 16
|
2011-03-18 21:43:03 +00:00
|
|
|
|
2012-08-02 14:03:32 +00:00
|
|
|
|
|
|
|
/* Determines whether to build code that supports the GPU backend. Some classes
|
|
|
|
that are not GPU-specific, such as SkShader subclasses, have optional code
|
|
|
|
that is used allows them to interact with the GPU backend. If you'd like to
|
|
|
|
omit this code set SK_SUPPORT_GPU to 0. This also allows you to omit the gpu
|
|
|
|
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
|
2012-11-21 15:47:04 +00:00
|
|
|
|
2016-02-05 23:32:36 +00:00
|
|
|
/* Skia makes use of histogram logging macros to trace the frequency of
|
|
|
|
* events. By default, Skia provides no-op versions of these macros.
|
|
|
|
* Skia consumers can provide their own definitions of these macros to
|
|
|
|
* integrate with their histogram collection backend.
|
|
|
|
*/
|
2020-10-27 13:20:20 +00:00
|
|
|
//#define SK_HISTOGRAM_BOOLEAN(name, sample)
|
|
|
|
//#define SK_HISTOGRAM_ENUMERATION(name, sample, enum_size)
|
|
|
|
//#define SK_HISTOGRAM_EXACT_LINEAR(name, sample, value_max)
|
2020-10-29 14:24:54 +00:00
|
|
|
//#define SK_HISTOGRAM_MEMORY_KB(name, sample)
|
2016-02-05 23:32:36 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
#endif
|