blob: c34397cde64c13c64e3d3839c616f82b98501611 [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00003 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00004 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00006 */
7
bungemand3ebb482015-08-05 13:57:49 -07008// IWYU pragma: private, include "SkTypes.h"
9
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#ifndef SkPostConfig_DEFINED
11#define SkPostConfig_DEFINED
12
bungemanf20488b2015-07-29 11:49:40 -070013#if defined(SK_BUILD_FOR_WIN32)
bungeman@google.com7fd1f502013-12-04 16:40:42 +000014# define SK_BUILD_FOR_WIN
reed@android.com8a1c16f2008-12-17 15:59:43 +000015#endif
16
djsollen300405a2016-08-05 13:04:41 -070017#if !defined(SK_DEBUG) && !defined(SK_RELEASE)
18 #ifdef NDEBUG
19 #define SK_RELEASE
20 #else
21 #define SK_DEBUG
22 #endif
23#endif
24
reed@android.com8a1c16f2008-12-17 15:59:43 +000025#if defined(SK_DEBUG) && defined(SK_RELEASE)
bungeman@google.com7fd1f502013-12-04 16:40:42 +000026# error "cannot define both SK_DEBUG and SK_RELEASE"
reed@android.com8a1c16f2008-12-17 15:59:43 +000027#elif !defined(SK_DEBUG) && !defined(SK_RELEASE)
bungeman@google.com7fd1f502013-12-04 16:40:42 +000028# error "must define either SK_DEBUG or SK_RELEASE"
reed@android.com8a1c16f2008-12-17 15:59:43 +000029#endif
30
bungeman@google.com7fd1f502013-12-04 16:40:42 +000031#if defined(SK_SUPPORT_UNITTEST) && !defined(SK_DEBUG)
32# error "can't have unittests without debug"
reed@android.com8a1c16f2008-12-17 15:59:43 +000033#endif
34
bungeman@google.com7fd1f502013-12-04 16:40:42 +000035/**
36 * Matrix calculations may be float or double.
mtklein51958052015-06-09 15:06:22 -070037 * The default is float, as that's what Chromium's using.
bungeman@google.com7fd1f502013-12-04 16:40:42 +000038 */
vollick@chromium.org5596a692012-11-13 20:12:00 +000039#if defined(SK_MSCALAR_IS_DOUBLE) && defined(SK_MSCALAR_IS_FLOAT)
bungeman@google.com7fd1f502013-12-04 16:40:42 +000040# error "cannot define both SK_MSCALAR_IS_DOUBLE and SK_MSCALAR_IS_FLOAT"
vollick@chromium.org5596a692012-11-13 20:12:00 +000041#elif !defined(SK_MSCALAR_IS_DOUBLE) && !defined(SK_MSCALAR_IS_FLOAT)
mtklein51958052015-06-09 15:06:22 -070042# define SK_MSCALAR_IS_FLOAT
vollick@chromium.org5596a692012-11-13 20:12:00 +000043#endif
44
reed@android.com8a1c16f2008-12-17 15:59:43 +000045#if defined(SK_CPU_LENDIAN) && defined(SK_CPU_BENDIAN)
bungeman@google.com7fd1f502013-12-04 16:40:42 +000046# error "cannot define both SK_CPU_LENDIAN and SK_CPU_BENDIAN"
reed@android.com8a1c16f2008-12-17 15:59:43 +000047#elif !defined(SK_CPU_LENDIAN) && !defined(SK_CPU_BENDIAN)
bungeman@google.com7fd1f502013-12-04 16:40:42 +000048# error "must define either SK_CPU_LENDIAN or SK_CPU_BENDIAN"
reed@android.com8a1c16f2008-12-17 15:59:43 +000049#endif
50
bungeman@google.com7fd1f502013-12-04 16:40:42 +000051/**
52 * Ensure the port has defined all of SK_X32_SHIFT, or none of them.
53 */
reed@android.com8a1c16f2008-12-17 15:59:43 +000054#ifdef SK_A32_SHIFT
bungeman@google.com7fd1f502013-12-04 16:40:42 +000055# if !defined(SK_R32_SHIFT) || !defined(SK_G32_SHIFT) || !defined(SK_B32_SHIFT)
56# error "all or none of the 32bit SHIFT amounts must be defined"
57# endif
reed@android.com8a1c16f2008-12-17 15:59:43 +000058#else
bungeman@google.com7fd1f502013-12-04 16:40:42 +000059# if defined(SK_R32_SHIFT) || defined(SK_G32_SHIFT) || defined(SK_B32_SHIFT)
60# error "all or none of the 32bit SHIFT amounts must be defined"
61# endif
reed@android.com8a1c16f2008-12-17 15:59:43 +000062#endif
63
bsalomon@google.com04423802011-11-23 21:25:35 +000064#if !defined(SK_HAS_COMPILER_FEATURE)
bungeman@google.com7fd1f502013-12-04 16:40:42 +000065# if defined(__has_feature)
66# define SK_HAS_COMPILER_FEATURE(x) __has_feature(x)
67# else
68# define SK_HAS_COMPILER_FEATURE(x) 0
69# endif
bsalomon@google.com04423802011-11-23 21:25:35 +000070#endif
71
bungeman@google.com5ebbbe52013-08-06 18:32:29 +000072#if !defined(SK_ATTRIBUTE)
bungeman@google.com7fd1f502013-12-04 16:40:42 +000073# if defined(__clang__) || defined(__GNUC__)
74# define SK_ATTRIBUTE(attr) __attribute__((attr))
75# else
76# define SK_ATTRIBUTE(attr)
77# endif
bungeman@google.com5ebbbe52013-08-06 18:32:29 +000078#endif
79
mtkleine5fb9c82016-07-07 08:12:09 -070080#if defined(_MSC_VER) && SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2
81 #define SK_VECTORCALL __vectorcall
82#elif defined(SK_CPU_ARM32) && defined(SK_ARM_HAS_NEON)
83 #define SK_VECTORCALL __attribute__((pcs("aapcs-vfp")))
84#else
85 #define SK_VECTORCALL
86#endif
87
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000088#if !defined(SK_SUPPORT_GPU)
bungeman@google.com7fd1f502013-12-04 16:40:42 +000089# define SK_SUPPORT_GPU 1
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000090#endif
91
bsalomon@google.com04423802011-11-23 21:25:35 +000092/**
93 * The clang static analyzer likes to know that when the program is not
94 * expected to continue (crash, assertion failure, etc). It will notice that
95 * some combination of parameters lead to a function call that does not return.
96 * It can then make appropriate assumptions about the parameters in code
97 * executed only if the non-returning function was *not* called.
98 */
99#if !defined(SkNO_RETURN_HINT)
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000100# if SK_HAS_COMPILER_FEATURE(attribute_analyzer_noreturn)
101 static inline void SkNO_RETURN_HINT() __attribute__((analyzer_noreturn));
102 static inline void SkNO_RETURN_HINT() {}
103# else
104# define SkNO_RETURN_HINT() do {} while (false)
105# endif
bsalomon@google.com04423802011-11-23 21:25:35 +0000106#endif
107
reed@android.com8a1c16f2008-12-17 15:59:43 +0000108///////////////////////////////////////////////////////////////////////////////
109
mdempsky106b1242015-09-22 06:10:35 -0700110// TODO(mdempsky): Move elsewhere as appropriate.
111#include <new>
reed@android.com8a1c16f2008-12-17 15:59:43 +0000112
reed@android.com8a1c16f2008-12-17 15:59:43 +0000113
114///////////////////////////////////////////////////////////////////////////////
115
reed@android.com8a1c16f2008-12-17 15:59:43 +0000116#ifdef SK_BUILD_FOR_WIN
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000117# ifndef SK_A32_SHIFT
118# define SK_A32_SHIFT 24
119# define SK_R32_SHIFT 16
120# define SK_G32_SHIFT 8
121# define SK_B32_SHIFT 0
122# endif
123#
mtklein3f73e8c2014-06-19 07:41:58 -0700124#endif
125
benjaminwagner58afee82015-11-18 13:14:14 -0800126#if defined(GOOGLE3)
benjaminwagner58afee82015-11-18 13:14:14 -0800127 void SkDebugfForDumpStackTrace(const char* data, void* unused);
djsollenf2b340f2016-01-29 08:51:04 -0800128 void DumpStackTrace(int skip_count, void w(const char*, void*), void* arg);
129# define SK_DUMP_GOOGLE3_STACK() DumpStackTrace(0, SkDebugfForDumpStackTrace, nullptr)
130#else
131# define SK_DUMP_GOOGLE3_STACK()
benjaminwagner58afee82015-11-18 13:14:14 -0800132#endif
133
djsollenf2b340f2016-01-29 08:51:04 -0800134#ifndef SK_ABORT
bungeman1f790aa2016-07-20 09:49:10 -0700135# define SK_ABORT(message) \
djsollenf2b340f2016-01-29 08:51:04 -0800136 do { \
137 SkNO_RETURN_HINT(); \
bungeman1f790aa2016-07-20 09:49:10 -0700138 SkDebugf("%s:%d: fatal error: \"%s\"\n", __FILE__, __LINE__, message); \
djsollenf2b340f2016-01-29 08:51:04 -0800139 SK_DUMP_GOOGLE3_STACK(); \
140 sk_abort_no_print(); \
141 } while (false)
reed@android.com8a1c16f2008-12-17 15:59:43 +0000142#endif
143
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000144/**
bsalomon@google.com27661182011-05-19 15:57:44 +0000145 * We check to see if the SHIFT value has already been defined.
146 * if not, we define it ourself to some default values. We default to OpenGL
147 * order (in memory: r,g,b,a)
148 */
149#ifndef SK_A32_SHIFT
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000150# ifdef SK_CPU_BENDIAN
151# define SK_R32_SHIFT 24
152# define SK_G32_SHIFT 16
153# define SK_B32_SHIFT 8
154# define SK_A32_SHIFT 0
155# else
156# define SK_R32_SHIFT 0
157# define SK_G32_SHIFT 8
158# define SK_B32_SHIFT 16
159# define SK_A32_SHIFT 24
160# endif
bsalomon@google.com27661182011-05-19 15:57:44 +0000161#endif
162
commit-bot@chromium.orge4657ed2013-03-19 14:16:31 +0000163/**
djsollen@google.com2b343cc2013-08-20 20:28:03 +0000164 * SkColor has well defined shift values, but SkPMColor is configurable. This
165 * macro is a convenience that returns true if the shift values are equal while
166 * ignoring the machine's endianness.
167 */
168#define SK_COLOR_MATCHES_PMCOLOR_BYTE_ORDER \
169 (SK_A32_SHIFT == 24 && SK_R32_SHIFT == 16 && SK_G32_SHIFT == 8 && SK_B32_SHIFT == 0)
170
171/**
commit-bot@chromium.orge4657ed2013-03-19 14:16:31 +0000172 * SK_PMCOLOR_BYTE_ORDER can be used to query the byte order of SkPMColor at compile time. The
173 * relationship between the byte order and shift values depends on machine endianness. If the shift
174 * order is R=0, G=8, B=16, A=24 then ((char*)&pmcolor)[0] will produce the R channel on a little
175 * endian machine and the A channel on a big endian machine. Thus, given those shifts values,
176 * SK_PMCOLOR_BYTE_ORDER(R,G,B,A) will be true on a little endian machine and
177 * SK_PMCOLOR_BYTE_ORDER(A,B,G,R) will be true on a big endian machine.
178 */
179#ifdef SK_CPU_BENDIAN
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000180# define SK_PMCOLOR_BYTE_ORDER(C0, C1, C2, C3) \
commit-bot@chromium.orge4657ed2013-03-19 14:16:31 +0000181 (SK_ ## C3 ## 32_SHIFT == 0 && \
182 SK_ ## C2 ## 32_SHIFT == 8 && \
183 SK_ ## C1 ## 32_SHIFT == 16 && \
184 SK_ ## C0 ## 32_SHIFT == 24)
185#else
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000186# define SK_PMCOLOR_BYTE_ORDER(C0, C1, C2, C3) \
commit-bot@chromium.orge4657ed2013-03-19 14:16:31 +0000187 (SK_ ## C0 ## 32_SHIFT == 0 && \
188 SK_ ## C1 ## 32_SHIFT == 8 && \
189 SK_ ## C2 ## 32_SHIFT == 16 && \
190 SK_ ## C3 ## 32_SHIFT == 24)
191#endif
192
robertphillips@google.com0e6e8cc2013-08-15 13:43:23 +0000193//////////////////////////////////////////////////////////////////////////////////////////////
reed@android.com8a1c16f2008-12-17 15:59:43 +0000194
195#if defined SK_DEBUG && defined SK_BUILD_FOR_WIN32
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000196# ifdef free
197# undef free
198# endif
199# include <crtdbg.h>
200# undef free
201#
202# ifdef SK_DEBUGx
203# if defined(SK_SIMULATE_FAILED_MALLOC) && defined(__cplusplus)
204 void * operator new(
205 size_t cb,
206 int nBlockUse,
207 const char * szFileName,
208 int nLine,
209 int foo
210 );
211 void * operator new[](
212 size_t cb,
213 int nBlockUse,
214 const char * szFileName,
215 int nLine,
216 int foo
217 );
218 void operator delete(
219 void *pUserData,
220 int, const char*, int, int
221 );
222 void operator delete(
223 void *pUserData
224 );
225 void operator delete[]( void * p );
226# define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__, 0)
227# else
228# define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)
229# endif
230# define new DEBUG_CLIENTBLOCK
231# else
232# define DEBUG_CLIENTBLOCK
233# endif
reed@android.com8a1c16f2008-12-17 15:59:43 +0000234#endif
235
tomhudson@google.com13413042011-10-03 16:01:10 +0000236//////////////////////////////////////////////////////////////////////
237
bungeman@google.com5ebbbe52013-08-06 18:32:29 +0000238#if !defined(SK_UNUSED)
halcanary4871f222016-08-26 13:17:44 -0700239# if defined(_MSC_VER)
240# define SK_UNUSED __pragma(warning(suppress:4189))
241# else
242# define SK_UNUSED SK_ATTRIBUTE(unused)
243# endif
bungeman@google.com5ebbbe52013-08-06 18:32:29 +0000244#endif
245
reed@google.com44699382013-10-31 17:28:30 +0000246#if !defined(SK_ATTR_DEPRECATED)
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000247 // FIXME: we ignore msg for now...
248# define SK_ATTR_DEPRECATED(msg) SK_ATTRIBUTE(deprecated)
reed@google.com44699382013-10-31 17:28:30 +0000249#endif
250
commit-bot@chromium.orgd70fa202014-04-24 21:51:58 +0000251#if !defined(SK_ATTR_EXTERNALLY_DEPRECATED)
252# if !defined(SK_INTERNAL)
253# define SK_ATTR_EXTERNALLY_DEPRECATED(msg) SK_ATTR_DEPRECATED(msg)
254# else
255# define SK_ATTR_EXTERNALLY_DEPRECATED(msg)
256# endif
257#endif
258
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000259/**
260 * If your judgment is better than the compiler's (i.e. you've profiled it),
261 * you can use SK_ALWAYS_INLINE to force inlining. E.g.
262 * inline void someMethod() { ... } // may not be inlined
263 * SK_ALWAYS_INLINE void someMethod() { ... } // should always be inlined
264 */
mtklein@google.com1950d5f2013-11-22 16:56:22 +0000265#if !defined(SK_ALWAYS_INLINE)
266# if defined(SK_BUILD_FOR_WIN)
267# define SK_ALWAYS_INLINE __forceinline
268# else
269# define SK_ALWAYS_INLINE SK_ATTRIBUTE(always_inline) inline
270# endif
271#endif
272
msarettfbfa2582016-08-12 08:29:08 -0700273/**
274 * If your judgment is better than the compiler's (i.e. you've profiled it),
275 * you can use SK_NEVER_INLINE to prevent inlining.
276 */
277#if !defined(SK_NEVER_INLINE)
278# if defined(SK_BUILD_FOR_WIN)
279# define SK_NEVER_INLINE __declspec(noinline)
280# else
281# define SK_NEVER_INLINE SK_ATTRIBUTE(noinline)
282# endif
283#endif
284
bungeman@google.com5ebbbe52013-08-06 18:32:29 +0000285//////////////////////////////////////////////////////////////////////
286
mtklein6885a1e2015-10-27 13:06:47 -0700287#if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE1
mtklein72815e92015-10-28 09:52:20 -0700288 #define SK_PREFETCH(ptr) _mm_prefetch(reinterpret_cast<const char*>(ptr), _MM_HINT_T0)
289 #define SK_WRITE_PREFETCH(ptr) _mm_prefetch(reinterpret_cast<const char*>(ptr), _MM_HINT_T0)
mtklein6885a1e2015-10-27 13:06:47 -0700290#elif defined(__GNUC__)
291 #define SK_PREFETCH(ptr) __builtin_prefetch(ptr)
292 #define SK_WRITE_PREFETCH(ptr) __builtin_prefetch(ptr, 1)
commit-bot@chromium.orgfedf13d2013-11-05 15:03:26 +0000293#else
mtklein6885a1e2015-10-27 13:06:47 -0700294 #define SK_PREFETCH(ptr)
295 #define SK_WRITE_PREFETCH(ptr)
commit-bot@chromium.orgfedf13d2013-11-05 15:03:26 +0000296#endif
297
298//////////////////////////////////////////////////////////////////////
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000299
senorblanco@chromium.org3a67a662012-07-09 18:22:08 +0000300#ifndef SK_PRINTF_LIKE
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000301# if defined(__clang__) || defined(__GNUC__)
302# define SK_PRINTF_LIKE(A, B) __attribute__((format(printf, (A), (B))))
303# else
304# define SK_PRINTF_LIKE(A, B)
305# endif
senorblanco@chromium.org3a67a662012-07-09 18:22:08 +0000306#endif
307
308//////////////////////////////////////////////////////////////////////
309
310#ifndef SK_SIZE_T_SPECIFIER
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000311# if defined(_MSC_VER)
312# define SK_SIZE_T_SPECIFIER "%Iu"
313# else
314# define SK_SIZE_T_SPECIFIER "%zu"
315# endif
senorblanco@chromium.org3a67a662012-07-09 18:22:08 +0000316#endif
317
318//////////////////////////////////////////////////////////////////////
319
caryclark@google.comd26147a2011-12-15 14:16:43 +0000320#ifndef SK_ALLOW_STATIC_GLOBAL_INITIALIZERS
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000321# define SK_ALLOW_STATIC_GLOBAL_INITIALIZERS 1
caryclark@google.comd26147a2011-12-15 14:16:43 +0000322#endif
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000323
bungeman@google.comd9947f62013-12-18 15:27:39 +0000324//////////////////////////////////////////////////////////////////////
325
derekf29dda802014-10-01 10:52:52 -0700326#ifndef SK_EGL
borenet48087572015-04-02 12:16:36 -0700327# if defined(SK_BUILD_FOR_ANDROID)
derekf29dda802014-10-01 10:52:52 -0700328# define SK_EGL 1
329# else
330# define SK_EGL 0
331# endif
332#endif
bungeman@google.com4770a3b2014-04-10 22:26:29 +0000333
334//////////////////////////////////////////////////////////////////////
335
mtklein8d7f5c32016-08-01 09:22:12 -0700336#if !defined(SK_GAMMA_EXPONENT)
337 #define SK_GAMMA_EXPONENT (0.0f) // SRGB
bungeman@google.com4770a3b2014-04-10 22:26:29 +0000338#endif
339
joshualitt3f655f32015-04-29 10:01:22 -0700340//////////////////////////////////////////////////////////////////////
341
342#ifndef GR_TEST_UTILS
343# define GR_TEST_UTILS 1
344#endif
345
ericrk369e9372016-02-05 15:32:36 -0800346//////////////////////////////////////////////////////////////////////
347
ericrk983294f2016-04-18 09:14:00 -0700348#if defined(SK_HISTOGRAM_ENUMERATION) && defined(SK_HISTOGRAM_BOOLEAN)
349# define SK_HISTOGRAMS_ENABLED 1
350#else
351# define SK_HISTOGRAMS_ENABLED 0
352#endif
353
ericrk369e9372016-02-05 15:32:36 -0800354#ifndef SK_HISTOGRAM_BOOLEAN
355# define SK_HISTOGRAM_BOOLEAN(name, value)
356#endif
357
358#ifndef SK_HISTOGRAM_ENUMERATION
359# define SK_HISTOGRAM_ENUMERATION(name, value, boundary_value)
360#endif
361
bungeman@google.com7fd1f502013-12-04 16:40:42 +0000362#endif // SkPostConfig_DEFINED