blob: ed5e0833821a6e424035dff6ed4151f86960f088 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/command_buffer/service/gpu_switches.h"
#include "base/basictypes.h"
namespace switches {
// Turn on Calling GL Error after every command.
const char kCompileShaderAlwaysSucceeds[] = "compile-shader-always-succeeds";
// Disable the GLSL translator.
const char kDisableGLSLTranslator[] = "disable-glsl-translator";
// Turn on Logging GPU commands.
const char kEnableGPUCommandLogging[] = "enable-gpu-command-logging";
// Turn on Calling GL Error after every command.
const char kEnableGPUDebugging[] = "enable-gpu-debugging";
// Enforce GL minimums.
const char kEnforceGLMinimums[] = "enforce-gl-minimums";
const char* kGpuSwitches[] = {
kCompileShaderAlwaysSucceeds,
kDisableGLSLTranslator,
kEnableGPUCommandLogging,
kEnableGPUDebugging,
kEnforceGLMinimums,
};
const int kNumGpuSwitches = arraysize(kGpuSwitches);
} // namespace switches
|