| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2010 Google Inc. | 3 * Copyright 2010 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 | 10 |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 #define GR_STATIC_ASSERT(CONDITION) static_assert(CONDITION, "bug") | 178 #define GR_STATIC_ASSERT(CONDITION) static_assert(CONDITION, "bug") |
| 179 #else | 179 #else |
| 180 template <bool> class GR_STATIC_ASSERT_FAILURE; | 180 template <bool> class GR_STATIC_ASSERT_FAILURE; |
| 181 template <> class GR_STATIC_ASSERT_FAILURE<true> {}; | 181 template <> class GR_STATIC_ASSERT_FAILURE<true> {}; |
| 182 #define GR_STATIC_ASSERT(CONDITION) \ | 182 #define GR_STATIC_ASSERT(CONDITION) \ |
| 183 enum {GR_CONCAT(X,__LINE__) = \ | 183 enum {GR_CONCAT(X,__LINE__) = \ |
| 184 sizeof(GR_STATIC_ASSERT_FAILURE<CONDITION>)} | 184 sizeof(GR_STATIC_ASSERT_FAILURE<CONDITION>)} |
| 185 #endif | 185 #endif |
| 186 #endif | 186 #endif |
| 187 | 187 |
| 188 /** | |
| 189 * GR_FORCE_GPU_TRACE_DEBUGGING will force gpu tracing/debug markers to be turne
d on. The trace | |
| 190 * markers will be printed out instead of making the backend calls to push and p
op them. | |
| 191 */ | |
| 192 #if !defined(GR_FORCE_GPU_TRACE_DEBUGGING) | |
| 193 #define GR_FORCE_GPU_TRACE_DEBUGGING 0 | |
| 194 #endif | 188 #endif |
| 195 | |
| 196 #endif | |
| OLD | NEW |