OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 VisualFlags_DEFINED | 8 #ifndef VisualFlags_DEFINED |
9 #define VisualFlags_DEFINED | 9 #define VisualFlags_DEFINED |
10 | 10 |
11 #include "SkCommandLineFlags.h" | 11 #include "SkCommandLineFlags.h" |
12 | 12 |
13 DECLARE_string(config); | 13 DECLARE_string(config); |
14 DECLARE_int32(msaa); | 14 DECLARE_int32(msaa); |
15 DECLARE_int32(nvpr); | 15 DECLARE_bool(offscreen); |
| 16 DECLARE_bool(nvpr); |
| 17 DECLARE_bool(cpu); |
16 | 18 |
17 #endif | 19 #endif |
OLD | NEW |