baf8fcbb1b
Replaces "nvpr mode" with "offscreen mode" and a flag to enable/ disable nvpr. Assigns new config names to the various combinations of flags and begins printing them with the bench results in order to match nanobench. BUG=skia: Review URL: https://codereview.chromium.org/1473253002
20 lines
352 B
C
20 lines
352 B
C
/*
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef VisualFlags_DEFINED
|
|
#define VisualFlags_DEFINED
|
|
|
|
#include "SkCommandLineFlags.h"
|
|
|
|
DECLARE_string(config);
|
|
DECLARE_int32(msaa);
|
|
DECLARE_bool(offscreen);
|
|
DECLARE_bool(nvpr);
|
|
DECLARE_bool(cpu);
|
|
|
|
#endif
|