Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: gpu/config/gpu_crash_keys.cc

Issue 2751103008: gpu: Add a util method to set crash-keys from a GPUInfo. (Closed)
Patch Set: comment Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gpu/config/gpu_crash_keys.h ('k') | gpu/config/gpu_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // 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
7 namespace gpu {
8 namespace crash_keys {
9 #if !defined(OS_ANDROID)
10 const char kGPUVendorID[] = "gpu-venid";
11 const char kGPUDeviceID[] = "gpu-devid";
12 #endif
13 const char kGPUDriverVersion[] = "gpu-driver";
14 const char kGPUPixelShaderVersion[] = "gpu-psver";
15 const char kGPUVertexShaderVersion[] = "gpu-vsver";
16 #if defined(OS_MACOSX)
17 const char kGPUGLVersion[] = "gpu-glver";
18 #elif defined(OS_POSIX)
19 const char kGPUVendor[] = "gpu-gl-vendor";
20 const char kGPURenderer[] = "gpu-gl-renderer";
21 #endif
22 } // namespace crash_keys
23 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/config/gpu_crash_keys.h ('k') | gpu/config/gpu_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698