diff options
author | reed <reed@google.com> | 2015-07-16 06:02:42 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-16 13:03:12 +0000 |
commit | c8d70b50d7ebd2b5fc0c32487db41f7dfbf17323 (patch) | |
tree | c51a8fb3a31a7f9cdad710910cf87474b63c4458 /skia/config | |
parent | 8f15b84632cba91099996809e66a4a04f47fda28 (diff) | |
download | chromium_src-c8d70b50d7ebd2b5fc0c32487db41f7dfbf17323.zip chromium_src-c8d70b50d7ebd2b5fc0c32487db41f7dfbf17323.tar.gz chromium_src-c8d70b50d7ebd2b5fc0c32487db41f7dfbf17323.tar.bz2 |
remove obsolete (commented) flags
BUG=
TBR=
Review URL: https://codereview.chromium.org/854393002
Cr-Commit-Position: refs/heads/master@{#339017}
Diffstat (limited to 'skia/config')
-rw-r--r-- | skia/config/SkUserConfig.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/skia/config/SkUserConfig.h b/skia/config/SkUserConfig.h index 501e88d..1c676753 100644 --- a/skia/config/SkUserConfig.h +++ b/skia/config/SkUserConfig.h @@ -44,29 +44,6 @@ /////////////////////////////////////////////////////////////////////////////// -/* Scalars (the fractional value type in skia) can be implemented either as - floats or 16.16 integers (fixed). Exactly one of these two symbols must be - defined. -*/ -//#define SK_SCALAR_IS_FLOAT -//#define SK_SCALAR_IS_FIXED - - -/* Somewhat independent of how SkScalar is implemented, Skia also wants to know - if it can use floats at all. Naturally, if SK_SCALAR_IS_FLOAT is defined, - then so muse SK_CAN_USE_FLOAT, but if scalars are fixed, SK_CAN_USE_FLOAT - can go either way. - */ -//#define SK_CAN_USE_FLOAT - -/* For some performance-critical scalar operations, skia will optionally work - around the standard float operators if it knows that the CPU does not have - native support for floats. If your environment uses software floating point, - define this flag. - */ -//#define SK_SOFTWARE_FLOAT - - /* 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 @@ -97,18 +74,6 @@ //#define SK_CPU_BENDIAN //#define SK_CPU_LENDIAN - -/* Some compilers don't support long long for 64bit integers. If yours does - not, define this to the appropriate type. - */ -//#define SkLONGLONG int64_t - - -/* Some envorinments do not suport writable globals (eek!). If yours does not, - define this flag. - */ -//#define SK_USE_RUNTIME_GLOBALS - /* If zlib is available and you want to support the flate compression algorithm (used in PDF generation), define SK_ZLIB_INCLUDE to be the include path. |