blob: 5b201eb4c3b4634c1bede2841bef2717e0394351 [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
Sunny Sachanandania2c68af2017-06-22 02:23:3522
23// TODO(sunnyps): Remove after https://crbug.com/729483 is fixed.
24const char kGpuChannelFilterTrace[] = "gpu-channel-filter-trace";
25const char kMediaGpuChannelFilterTrace[] = "media-gpu-channel-filter-trace";
26
sadrulc05f3472017-03-23 20:30:0527} // namespace crash_keys
28} // namespace gpu