Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Side by Side Diff: include/core/SkPreConfig.h

Issue 1265033002: IWYU: 'core' target, files starting A-C. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rebase (a file was deleted). Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/core/SkPostConfig.h ('k') | include/core/SkTypes.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2006 The Android Open Source Project 2 * Copyright 2006 The Android Open Source Project
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 // IWYU pragma: private, include "SkTypes.h"
9
8 #ifndef SkPreConfig_DEFINED 10 #ifndef SkPreConfig_DEFINED
9 #define SkPreConfig_DEFINED 11 #define SkPreConfig_DEFINED
10 12
11 // Allows embedders that want to disable macros that take arguments to just 13 // Allows embedders that want to disable macros that take arguments to just
12 // define that symbol to be one of these 14 // define that symbol to be one of these
13 #define SK_NOTHING_ARG1(arg1) 15 #define SK_NOTHING_ARG1(arg1)
14 #define SK_NOTHING_ARG2(arg1, arg2) 16 #define SK_NOTHING_ARG2(arg1, arg2)
15 #define SK_NOTHING_ARG3(arg1, arg2, arg3) 17 #define SK_NOTHING_ARG3(arg1, arg2, arg3)
16 18
17 ////////////////////////////////////////////////////////////////////// 19 //////////////////////////////////////////////////////////////////////
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 * 251 *
250 * NOTE: Clang/ARM (r161757) does not support the 'optimize' attribute. 252 * NOTE: Clang/ARM (r161757) does not support the 'optimize' attribute.
251 */ 253 */
252 #if SK_HAS_ATTRIBUTE(optimize) 254 #if SK_HAS_ATTRIBUTE(optimize)
253 # define SK_ATTRIBUTE_OPTIMIZE_O1 __attribute__((optimize("O1"))) 255 # define SK_ATTRIBUTE_OPTIMIZE_O1 __attribute__((optimize("O1")))
254 #else 256 #else
255 # define SK_ATTRIBUTE_OPTIMIZE_O1 /* nothing */ 257 # define SK_ATTRIBUTE_OPTIMIZE_O1 /* nothing */
256 #endif 258 #endif
257 259
258 #endif 260 #endif
OLDNEW
« no previous file with comments | « include/core/SkPostConfig.h ('k') | include/core/SkTypes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698