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

Side by Side Diff: tools/skpdiff/SkCLImageDiffer.h

Issue 628763005: Fix usage of SK_BUILD_* defines. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 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 | « tools/skdiff.h ('k') | tools/skpdiff/skpdiff_main.cpp » ('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 2013 Google Inc. 2 * Copyright 2013 Google Inc.
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 #ifndef SkCLImageDiffer_DEFINED 8 #ifndef SkCLImageDiffer_DEFINED
9 #define SkCLImageDiffer_DEFINED 9 #define SkCLImageDiffer_DEFINED
10 10
11 #if SK_BUILD_FOR_MAC 11 #if defined(SK_BUILD_FOR_MAC)
12 # include <OpenCL/cl.h> 12 # include <OpenCL/cl.h>
13 #else 13 #else
14 # include <CL/cl.h> 14 # include <CL/cl.h>
15 #endif 15 #endif
16 #include "SkTDArray.h" 16 #include "SkTDArray.h"
17 17
18 #include "SkImageDiffer.h" 18 #include "SkImageDiffer.h"
19 19
20 class SkStream; 20 class SkStream;
21 21
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 protected: 89 protected:
90 bool fIsGood; 90 bool fIsGood;
91 91
92 private: 92 private:
93 93
94 typedef SkImageDiffer INHERITED; 94 typedef SkImageDiffer INHERITED;
95 }; 95 };
96 96
97 #endif 97 #endif
OLDNEW
« no previous file with comments | « tools/skdiff.h ('k') | tools/skpdiff/skpdiff_main.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698