blob: d47ccb3fe85a8211a7be675170677d327e3bc78c [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00007 */
8
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
reed@google.comac10a2d2010-12-22 21:39:39 +000011#ifndef GrConfig_DEFINED
12#define GrConfig_DEFINED
13
robertphillips@google.com59552022012-08-31 13:07:37 +000014#include "SkTypes.h"
15
reed@google.comac10a2d2010-12-22 21:39:39 +000016///////////////////////////////////////////////////////////////////////////////
17// preconfig section:
18//
19// All the work before including GrUserConfig.h should center around guessing
20// what platform we're on, and defining low-level symbols based on that.
21//
22// A build environment may have already defined symbols, so we first check
23// for that
24//
25
26// hack to ensure we know what sort of Apple platform we're on
27#if defined(__APPLE_CPP__) || defined(__APPLE_CC__)
28 #include <TargetConditionals.h>
29#endif
30
31/**
32 * Gr defines are set to 0 or 1, rather than being undefined or defined
33 */
34
35#if !defined(GR_ANDROID_BUILD)
36 #define GR_ANDROID_BUILD 0
37#endif
38#if !defined(GR_IOS_BUILD)
39 #define GR_IOS_BUILD 0
40#endif
41#if !defined(GR_LINUX_BUILD)
42 #define GR_LINUX_BUILD 0
43#endif
44#if !defined(GR_MAC_BUILD)
45 #define GR_MAC_BUILD 0
46#endif
47#if !defined(GR_WIN32_BUILD)
48 #define GR_WIN32_BUILD 0
49#endif
50#if !defined(GR_QNX_BUILD)
51 #define GR_QNX_BUILD 0
52#endif
robertphillips@google.com59552022012-08-31 13:07:37 +000053#if !defined(GR_CACHE_STATS)
54 #define GR_CACHE_STATS 0
55#endif
reed@google.comac10a2d2010-12-22 21:39:39 +000056
57/**
58 * If no build target has been defined, attempt to infer.
59 */
60#if !GR_ANDROID_BUILD && !GR_IOS_BUILD && !GR_LINUX_BUILD && !GR_MAC_BUILD && !GR_WIN32_BUILD && !GR_QNX_BUILD
61 #if defined(_WIN32)
62 #undef GR_WIN32_BUILD
63 #define GR_WIN32_BUILD 1
64// #error "WIN"
65 #elif TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR
66 #undef GR_IOS_BUILD
67 #define GR_IOS_BUILD 1
68// #error "IOS"
djsollen@google.com56c69772011-11-08 19:00:26 +000069 #elif defined(SK_BUILD_FOR_ANDROID)
reed@google.comac10a2d2010-12-22 21:39:39 +000070 #undef GR_ANDROID_BUILD
71 #define GR_ANDROID_BUILD 1
72// #error "ANDROID"
73 #elif TARGET_OS_MAC
74 #undef GR_MAC_BUILD
75 #define GR_MAC_BUILD 1
76// #error "MAC"
77 #elif TARGET_OS_QNX || defined(__QNXNTO__)
78 #undef GR_QNX_BUILD
79 #define GR_QNX_BUILD 1
80// #error "QNX"
81 #else
82 #undef GR_LINUX_BUILD
83 #define GR_LINUX_BUILD 1
84// #error "LINUX"
bsalomon@google.com1c13c962011-02-14 16:51:21 +000085 #endif
reed@google.comac10a2d2010-12-22 21:39:39 +000086#endif
87
reed@google.comc9218432011-01-25 19:05:12 +000088// we need both GR_DEBUG and GR_RELEASE to be defined as 0 or 1
89//
90#ifndef GR_DEBUG
91 #ifdef GR_RELEASE
92 #define GR_DEBUG !GR_RELEASE
reed@google.comac10a2d2010-12-22 21:39:39 +000093 #else
reed@google.comc9218432011-01-25 19:05:12 +000094 #ifdef NDEBUG
95 #define GR_DEBUG 0
96 #else
97 #define GR_DEBUG 1
98 #endif
reed@google.comac10a2d2010-12-22 21:39:39 +000099 #endif
reed@google.comc9218432011-01-25 19:05:12 +0000100#endif
101
102#ifndef GR_RELEASE
reed@google.comac10a2d2010-12-22 21:39:39 +0000103 #define GR_RELEASE !GR_DEBUG
104#endif
105
reed@google.comc9218432011-01-25 19:05:12 +0000106#if GR_DEBUG == GR_RELEASE
reed@google.com8752ad72011-01-26 04:55:57 +0000107 #error "GR_DEBUG and GR_RELEASE must not be the same"
reed@google.comc9218432011-01-25 19:05:12 +0000108#endif
109
reed@google.comac10a2d2010-12-22 21:39:39 +0000110///////////////////////////////////////////////////////////////////////////////
111///////////////////////////////////////////////////////////////////////////////
112
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +0000113#if GR_WIN32_BUILD
114// VC8 doesn't support stdint.h, so we define those types here.
115typedef signed char int8_t;
116typedef unsigned char uint8_t;
117typedef short int16_t;
118typedef unsigned short uint16_t;
119typedef int int32_t;
120typedef unsigned uint32_t;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000121typedef __int64 int64_t;
122typedef unsigned __int64 uint64_t;
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +0000123#else
reed@google.comac10a2d2010-12-22 21:39:39 +0000124/*
bsalomon@google.com91826102011-03-21 19:51:57 +0000125 * Include stdint.h with defines that trigger declaration of C99 limit/const
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000126 * macros here before anyone else has a chance to include stdint.h without
bsalomon@google.com91826102011-03-21 19:51:57 +0000127 * these.
reed@google.comac10a2d2010-12-22 21:39:39 +0000128 */
senorblanco@chromium.orgf9a14552012-11-06 18:36:33 +0000129#ifndef __STDC_LIMIT_MACROS
reed@google.comac10a2d2010-12-22 21:39:39 +0000130#define __STDC_LIMIT_MACROS
senorblanco@chromium.orgf9a14552012-11-06 18:36:33 +0000131#endif
132#ifndef __STDC_CONSTANT_MACROS
reed@google.comac10a2d2010-12-22 21:39:39 +0000133#define __STDC_CONSTANT_MACROS
senorblanco@chromium.orgf9a14552012-11-06 18:36:33 +0000134#endif
reed@google.comac10a2d2010-12-22 21:39:39 +0000135#include <stdint.h>
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +0000136#endif
reed@google.comac10a2d2010-12-22 21:39:39 +0000137
138/*
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000139 * The "user config" file can be empty, and everything should work. It is
reed@google.comac10a2d2010-12-22 21:39:39 +0000140 * meant to store a given platform/client's overrides of our guess-work.
141 *
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000142 * A alternate user config file can be specified by defining
reed@google.comac10a2d2010-12-22 21:39:39 +0000143 * GR_USER_CONFIG_FILE. It should be defined relative to GrConfig.h
144 *
145 * e.g. it can specify GR_DEBUG/GR_RELEASE as it please, change the BUILD
bsalomon@google.com81712882012-11-01 17:12:34 +0000146 * target, or supply its own defines for anything else (e.g. GR_DEFAULT_TEXTURE_CACHE_MB_LIMIT)
reed@google.comac10a2d2010-12-22 21:39:39 +0000147 */
148#if !defined(GR_USER_CONFIG_FILE)
149 #include "GrUserConfig.h"
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000150#else
reed@google.comac10a2d2010-12-22 21:39:39 +0000151 #include GR_USER_CONFIG_FILE
152#endif
153
154
155///////////////////////////////////////////////////////////////////////////////
156///////////////////////////////////////////////////////////////////////////////
157// postconfig section:
158//
bsalomon@google.com91826102011-03-21 19:51:57 +0000159
reed@google.comac10a2d2010-12-22 21:39:39 +0000160// By now we must have a GR_..._BUILD symbol set to 1, and a decision about
161// debug -vs- release
162//
163
bungeman@google.comf85abda2012-03-22 17:56:29 +0000164#define GrPrintf SkDebugf
reed@google.comac10a2d2010-12-22 21:39:39 +0000165
166/**
167 * GR_STRING makes a string of X where X is expanded before conversion to a string
168 * if X itself contains macros.
169 */
170#define GR_STRING(X) GR_STRING_IMPL(X)
171#define GR_STRING_IMPL(X) #X
172
173/**
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000174 * GR_CONCAT concatenates X and Y where each is expanded before
reed@google.comac10a2d2010-12-22 21:39:39 +0000175 * contanenation if either contains macros.
176 */
177#define GR_CONCAT(X,Y) GR_CONCAT_IMPL(X,Y)
178#define GR_CONCAT_IMPL(X,Y) X##Y
179
180/**
181 * Creates a string of the form "<filename>(<linenumber>) : "
182 */
183#define GR_FILE_AND_LINE_STR __FILE__ "(" GR_STRING(__LINE__) ") : "
184
185/**
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000186 * Compilers have different ways of issuing warnings. This macro
187 * attempts to abstract them, but may need to be specialized for your
reed@google.comac10a2d2010-12-22 21:39:39 +0000188 * particular compiler.
189 * To insert compiler warnings use "#pragma message GR_WARN(<string>)"
190 */
reed@google.comc9218432011-01-25 19:05:12 +0000191#if defined(_MSC_VER) && _MSC_VER
reed@google.comac10a2d2010-12-22 21:39:39 +0000192 #define GR_WARN(MSG) (GR_FILE_AND_LINE_STR "WARNING: " MSG)
193#else//__GNUC__ - may need other defines for different compilers
194 #define GR_WARN(MSG) ("WARNING: " MSG)
195#endif
196
197/**
198 * GR_ALWAYSBREAK is an unconditional break in all builds.
199 */
200#if !defined(GR_ALWAYSBREAK)
201 #if GR_WIN32_BUILD
bsalomon@google.com04423802011-11-23 21:25:35 +0000202 #define GR_ALWAYSBREAK SkNO_RETURN_HINT(); __debugbreak()
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000203 #else
reed@google.comac10a2d2010-12-22 21:39:39 +0000204 // TODO: do other platforms really not have continuable breakpoints?
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000205 // sign extend for 64bit architectures to be sure this is
reed@google.comac10a2d2010-12-22 21:39:39 +0000206 // in the high address range
bsalomon@google.com04423802011-11-23 21:25:35 +0000207 #define GR_ALWAYSBREAK SkNO_RETURN_HINT(); *((int*)(int64_t)(int32_t)0xbeefcafe) = 0;
reed@google.comac10a2d2010-12-22 21:39:39 +0000208 #endif
209#endif
210
211/**
212 * GR_DEBUGBREAK is an unconditional break in debug builds.
213 */
214#if !defined(GR_DEBUGBREAK)
215 #if GR_DEBUG
216 #define GR_DEBUGBREAK GR_ALWAYSBREAK
217 #else
218 #define GR_DEBUGBREAK
219 #endif
220#endif
221
222/**
223 * GR_ALWAYSASSERT is an assertion in all builds.
224 */
225#if !defined(GR_ALWAYSASSERT)
226 #define GR_ALWAYSASSERT(COND) \
227 do { \
228 if (!(COND)) { \
229 GrPrintf("%s %s failed\n", GR_FILE_AND_LINE_STR, #COND); \
230 GR_ALWAYSBREAK; \
231 } \
232 } while (false)
233#endif
234
235/**
236 * GR_DEBUGASSERT is an assertion in debug builds only.
237 */
238#if !defined(GR_DEBUGASSERT)
239 #if GR_DEBUG
240 #define GR_DEBUGASSERT(COND) GR_ALWAYSASSERT(COND)
241 #else
242 #define GR_DEBUGASSERT(COND)
243 #endif
244#endif
245
246/**
247 * Prettier forms of the above macros.
248 */
reed@google.comac10a2d2010-12-22 21:39:39 +0000249#define GrAlwaysAssert(COND) GR_ALWAYSASSERT(COND)
250
251/**
commit-bot@chromium.org8d47ddc2013-05-09 14:55:46 +0000252 * Crash from unrecoverable condition, optionally with a message. The debug variants only
253 * crash in a debug build. The message versions print the message regardless of release vs debug.
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000254 */
255inline void GrCrash() { GrAlwaysAssert(false); }
256inline void GrCrash(const char* msg) { GrPrintf(msg); GrAlwaysAssert(false); }
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000257inline void GrDebugCrash() { SkASSERT(false); }
258inline void GrDebugCrash(const char* msg) { GrPrintf(msg); SkASSERT(false); }
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000259
260/**
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000261 * GR_DEBUGCODE compiles the code X in debug builds only
reed@google.comac10a2d2010-12-22 21:39:39 +0000262 */
263#if !defined(GR_DEBUGCODE)
264 #if GR_DEBUG
265 #define GR_DEBUGCODE(X) X
266 #else
267 #define GR_DEBUGCODE(X)
268 #endif
269#endif
270
271/**
272 * GR_STATIC_ASSERT is a compile time assertion. Depending on the platform
273 * it may print the message in the compiler log. Obviously, the condition must
274 * be evaluatable at compile time.
275 */
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000276// VS 2010 and GCC compiled with c++0x or gnu++0x support the new
reed@google.comac10a2d2010-12-22 21:39:39 +0000277// static_assert.
278#if !defined(GR_STATIC_ASSERT)
reed@google.comc9218432011-01-25 19:05:12 +0000279 #if (defined(_MSC_VER) && _MSC_VER >= 1600) || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)
reed@google.comac10a2d2010-12-22 21:39:39 +0000280 #define GR_STATIC_ASSERT(CONDITION) static_assert(CONDITION, "bug")
281 #else
282 template <bool> class GR_STATIC_ASSERT_FAILURE;
283 template <> class GR_STATIC_ASSERT_FAILURE<true> {};
284 #define GR_STATIC_ASSERT(CONDITION) \
285 enum {GR_CONCAT(X,__LINE__) = \
286 sizeof(GR_STATIC_ASSERT_FAILURE<CONDITION>)}
287 #endif
288#endif
289
reed@google.comac10a2d2010-12-22 21:39:39 +0000290/**
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000291 * GR_GEOM_BUFFER_LOCK_THRESHOLD gives a threshold (in bytes) for when Gr should
bsalomon@google.com96e96df2011-10-10 14:49:29 +0000292 * lock a GrGeometryBuffer to update its contents. It will use lock() if the
293 * size of the updated region is greater than the threshold. Otherwise it will
294 * use updateData().
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000295 */
296#if !defined(GR_GEOM_BUFFER_LOCK_THRESHOLD)
297 #define GR_GEOM_BUFFER_LOCK_THRESHOLD (1 << 15)
298#endif
299
djsollen@google.com42041e62012-10-29 19:24:45 +0000300/**
301 * GR_DEFAULT_TEXTURE_CACHE_MB_LIMIT gives a threshold (in megabytes) for the
302 * maximum size of the texture cache in vram. The value is only a default and
303 * can be overridden at runtime.
304 */
305#if !defined(GR_DEFAULT_TEXTURE_CACHE_MB_LIMIT)
306 #define GR_DEFAULT_TEXTURE_CACHE_MB_LIMIT 96
307#endif
308
senorblanco@chromium.orge0d44ff2012-11-19 20:43:10 +0000309/**
sugoi@google.come3453cb2013-01-07 14:26:40 +0000310 * GR_STROKE_PATH_RENDERING controls whether or not the GrStrokePathRenderer can be selected
311 * as a path renderer. GrStrokePathRenderer is currently an experimental path renderer.
312 */
313#if !defined(GR_STROKE_PATH_RENDERING)
314 #define GR_STROKE_PATH_RENDERING 0
315#endif
316
reed@google.comac10a2d2010-12-22 21:39:39 +0000317///////////////////////////////////////////////////////////////////////////////
318// tail section:
319//
320// Now we just assert if we are missing some required define, or if we detect
321// and inconsistent combination of defines
322//
323
324
325/**
326 * Only one build target macro should be 1 and the rest should be 0.
327 */
328#define GR_BUILD_SUM (GR_WIN32_BUILD + GR_MAC_BUILD + GR_IOS_BUILD + GR_ANDROID_BUILD + GR_LINUX_BUILD + GR_QNX_BUILD)
329#if 0 == GR_BUILD_SUM
330 #error "Missing a GR_BUILD define"
331#elif 1 != GR_BUILD_SUM
332 #error "More than one GR_BUILD defined"
333#endif
334
reed@google.comac10a2d2010-12-22 21:39:39 +0000335#if 0
336#if GR_WIN32_BUILD
337// #pragma message GR_WARN("GR_WIN32_BUILD")
338#endif
339#if GR_MAC_BUILD
340// #pragma message GR_WARN("GR_MAC_BUILD")
341#endif
342#if GR_IOS_BUILD
343// #pragma message GR_WARN("GR_IOS_BUILD")
344#endif
345#if GR_ANDROID_BUILD
346// #pragma message GR_WARN("GR_ANDROID_BUILD")
347#endif
348#if GR_LINUX_BUILD
349// #pragma message GR_WARN("GR_LINUX_BUILD")
350#endif
351#if GR_QNX_BUILD
352// #pragma message GR_WARN("GR_QNX_BUILD")
353#endif
354#endif
355
356#endif