| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 The Android Open Source Project | 2 * Copyright (C) 2006 The Android Open Source Project |
| 3 * | 3 * |
| 4 * Licensed under the Apache License, Version 2.0 (the "License"); | 4 * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 * you may not use this file except in compliance with the License. | 5 * you may not use this file except in compliance with the License. |
| 6 * You may obtain a copy of the License at | 6 * You may obtain a copy of the License at |
| 7 * | 7 * |
| 8 * http://www.apache.org/licenses/LICENSE-2.0 | 8 * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 * | 9 * |
| 10 * Unless required by applicable law or agreed to in writing, software | 10 * Unless required by applicable law or agreed to in writing, software |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 #endif | 203 #endif |
| 204 | 204 |
| 205 #ifndef SK_IGNORE_GPU_DITHER | 205 #ifndef SK_IGNORE_GPU_DITHER |
| 206 # define SK_IGNORE_GPU_DITHER | 206 # define SK_IGNORE_GPU_DITHER |
| 207 #endif | 207 #endif |
| 208 | 208 |
| 209 #ifndef SK_DISABLE_COLOR_XFORM_PIPELINE | 209 #ifndef SK_DISABLE_COLOR_XFORM_PIPELINE |
| 210 # define SK_DISABLE_COLOR_XFORM_PIPELINE | 210 # define SK_DISABLE_COLOR_XFORM_PIPELINE |
| 211 #endif | 211 #endif |
| 212 | 212 |
| 213 #ifndef SK_USE_LEGACY_NAMED_COLOR_SPACE | |
| 214 # define SK_USE_LEGACY_NAMED_COLOR_SPACE | |
| 215 #endif | |
| 216 | |
| 217 #ifndef SK_SUPPORT_LEGACY_BITMAP_SETPIXELREF | 213 #ifndef SK_SUPPORT_LEGACY_BITMAP_SETPIXELREF |
| 218 # define SK_SUPPORT_LEGACY_BITMAP_SETPIXELREF | 214 # define SK_SUPPORT_LEGACY_BITMAP_SETPIXELREF |
| 219 #endif | 215 #endif |
| 220 | 216 |
| 221 // Remove this after we fixed all the issues related to the new SDF algorithm | 217 // Remove this after we fixed all the issues related to the new SDF algorithm |
| 222 // (https://codereview.chromium.org/1643143002) | 218 // (https://codereview.chromium.org/1643143002) |
| 223 #ifndef SK_USE_LEGACY_DISTANCE_FIELDS | 219 #ifndef SK_USE_LEGACY_DISTANCE_FIELDS |
| 224 # define SK_USE_LEGACY_DISTANCE_FIELDS | 220 # define SK_USE_LEGACY_DISTANCE_FIELDS |
| 225 #endif | 221 #endif |
| 226 | 222 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 // Enabling the screenspace AA tessellating path renderer needs rebaselines. | 257 // Enabling the screenspace AA tessellating path renderer needs rebaselines. |
| 262 #define SK_DISABLE_SCREENSPACE_TESS_AA_PATH_RENDERER | 258 #define SK_DISABLE_SCREENSPACE_TESS_AA_PATH_RENDERER |
| 263 | 259 |
| 264 #ifndef SK_SUPPORT_LEGACY_AAA | 260 #ifndef SK_SUPPORT_LEGACY_AAA |
| 265 # define SK_SUPPORT_LEGACY_AAA | 261 # define SK_SUPPORT_LEGACY_AAA |
| 266 #endif | 262 #endif |
| 267 | 263 |
| 268 // ===== End Chrome-specific definitions ===== | 264 // ===== End Chrome-specific definitions ===== |
| 269 | 265 |
| 270 #endif | 266 #endif |
| OLD | NEW |