blob: 427bb950d46cd8f0e2e3d793e37205ebc0629aba [file] [log] [blame]
sadrulc05f3472017-03-23 20:30:051// Copyright 2017 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "gpu/config/gpu_crash_keys.h"
6
7namespace gpu {
8namespace crash_keys {
9#if !defined(OS_ANDROID)
10const char kGPUVendorID[] = "gpu-venid";
11const char kGPUDeviceID[] = "gpu-devid";
12#endif
13const char kGPUDriverVersion[] = "gpu-driver";
14const char kGPUPixelShaderVersion[] = "gpu-psver";
15const char kGPUVertexShaderVersion[] = "gpu-vsver";
16#if defined(OS_MACOSX)
17const char kGPUGLVersion[] = "gpu-glver";
18#elif defined(OS_POSIX)
19const char kGPUVendor[] = "gpu-gl-vendor";
20const char kGPURenderer[] = "gpu-gl-renderer";
21#endif
22} // namespace crash_keys
23} // namespace gpu