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

Side by Side Diff: content/browser/gpu/gpu_driver_bug_list.cc

Issue 15745014: Move GPU device/driver info related code from content to gpu. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 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 "content/browser/gpu/gpu_driver_bug_list.h"
6
7 #include "base/basictypes.h"
8 #include "base/logging.h"
9 #include "gpu/command_buffer/service/gpu_driver_bug_workaround_type.h"
10
11 namespace content {
12
13 namespace {
14
15 struct DriverBugInfo {
16 int feature_type;
17 std::string feature_name;
18 };
19
20 } // namespace anonymous
21
22 GpuDriverBugList::GpuDriverBugList()
23 : GpuControlList() {
24 }
25
26 GpuDriverBugList::~GpuDriverBugList() {
27 }
28
29 // static
30 GpuDriverBugList* GpuDriverBugList::Create() {
31 GpuDriverBugList* list = new GpuDriverBugList();
32
33 const DriverBugInfo kFeatureList[] = {
34 #define GPU_OP(type, name) { gpu::type, #name },
35 GPU_DRIVER_BUG_WORKAROUNDS(GPU_OP)
36 #undef GPU_OP
37 };
38 DCHECK_EQ(static_cast<int>(arraysize(kFeatureList)),
39 gpu::NUMBER_OF_GPU_DRIVER_BUG_WORKAROUND_TYPES);
40 for (int i = 0; i < gpu::NUMBER_OF_GPU_DRIVER_BUG_WORKAROUND_TYPES; ++i) {
41 list->AddSupportedFeature(kFeatureList[i].feature_name,
42 kFeatureList[i].feature_type);
43 }
44 return list;
45 }
46
47 } // namespace content
48
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_driver_bug_list.h ('k') | content/browser/gpu/gpu_driver_bug_list_json.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698