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

Side by Side Diff: tests/PathOpsSkpClipTest.cpp

Issue 1228553010: Remove skia_arch_width, fold into skia_arch_type. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase 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 | « site/user/quick/linux.md ('k') | tests/skia_test.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 #include "CrashHandler.h" 8 #include "CrashHandler.h"
9 // #include "OverwriteLine.h" 9 // #include "OverwriteLine.h"
10 #include "Resources.h" 10 #include "Resources.h"
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after
1083 } 1083 }
1084 } 1084 }
1085 if (!FLAGS_skp.isEmpty()) { 1085 if (!FLAGS_skp.isEmpty()) {
1086 gNames.set(FLAGS_skp); 1086 gNames.set(FLAGS_skp);
1087 } 1087 }
1088 #ifdef SK_DEBUG 1088 #ifdef SK_DEBUG
1089 header.append(" SK_DEBUG"); 1089 header.append(" SK_DEBUG");
1090 #else 1090 #else
1091 header.append(" SK_RELEASE"); 1091 header.append(" SK_RELEASE");
1092 #endif 1092 #endif
1093 header.appendf(" skia_arch_width=%d", (int)sizeof(void*) * 8);
1094 if (FLAGS_verbose) { 1093 if (FLAGS_verbose) {
1095 header.appendf("\n"); 1094 header.appendf("\n");
1096 } 1095 }
1097 SkDebugf("%s", header.c_str()); 1096 SkDebugf("%s", header.c_str());
1098 Iter iter; 1097 Iter iter;
1099 Test* test; 1098 Test* test;
1100 while ((test = iter.next()) != NULL) { 1099 while ((test = iter.next()) != NULL) {
1101 SkAutoTDelete<Test> owned(test); 1100 SkAutoTDelete<Test> owned(test);
1102 if (!SkCommandLineFlags::ShouldSkip(FLAGS_match, test->getName())) { 1101 if (!SkCommandLineFlags::ShouldSkip(FLAGS_match, test->getName())) {
1103 test->run(); 1102 test->run();
1104 } 1103 }
1105 } 1104 }
1106 SkGraphics::Term(); 1105 SkGraphics::Term();
1107 return 0; 1106 return 0;
1108 } 1107 }
1109 1108
1110 #if !defined(SK_BUILD_FOR_IOS) 1109 #if !defined(SK_BUILD_FOR_IOS)
1111 int main(int argc, char * const argv[]) { 1110 int main(int argc, char * const argv[]) {
1112 return tool_main(argc, (char**) argv); 1111 return tool_main(argc, (char**) argv);
1113 } 1112 }
1114 #endif 1113 #endif
OLDNEW
« no previous file with comments | « site/user/quick/linux.md ('k') | tests/skia_test.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698