OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
4 * | 3 * |
5 * 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 |
6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
7 */ | 6 */ |
8 | 7 |
9 | 8 |
10 #include "SkGraphics.h" | 9 #include "SkGraphics.h" |
11 | 10 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 if (nextEqual) { | 111 if (nextEqual) { |
113 val = (size_t) atoi(nextEqual + 1); | 112 val = (size_t) atoi(nextEqual + 1); |
114 } | 113 } |
115 (gFlags[i].fFunc)(val); | 114 (gFlags[i].fFunc)(val); |
116 break; | 115 break; |
117 } | 116 } |
118 } | 117 } |
119 flags = nextSemi + 1; | 118 flags = nextSemi + 1; |
120 } while (nextSemi); | 119 } while (nextSemi); |
121 } | 120 } |
OLD | NEW |