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

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

Issue 18501018: Enable ANGLE D3D11 runtime for Windows 7+. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Determines whether a certain driver bug exists in the current system. 5 // Determines whether a certain driver bug exists in the current system.
6 // A valid gpu_driver_bug_list.json file are in the format of 6 // A valid gpu_driver_bug_list.json file are in the format of
7 // { 7 // {
8 // "version": "x.y", 8 // "version": "x.y",
9 // "entries": [ 9 // "entries": [
10 // { // entry 1 10 // { // entry 1
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 #define LONG_STRING_CONST(...) #__VA_ARGS__ 79 #define LONG_STRING_CONST(...) #__VA_ARGS__
80 80
81 namespace gpu { 81 namespace gpu {
82 82
83 const char kGpuDriverBugListJson[] = LONG_STRING_CONST( 83 const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
84 84
85 { 85 {
86 "name": "gpu driver bug list", 86 "name": "gpu driver bug list",
87 // Please update the version number whenever you change this file. 87 // Please update the version number whenever you change this file.
88 "version": "2.2", 88 "version": "2.3",
89 "entries": [ 89 "entries": [
90 { 90 {
91 "id": 1, 91 "id": 1,
92 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly", 92 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly",
93 "os": { 93 "os": {
94 "type": "android" 94 "type": "android"
95 }, 95 },
96 "gl_vendor": { 96 "gl_vendor": {
97 "op": "beginwith", 97 "op": "beginwith",
98 "value": "Imagination" 98 "value": "Imagination"
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 "type": "macosx", 395 "type": "macosx",
396 "version": { 396 "version": {
397 "op": "<", 397 "op": "<",
398 "number": "10.8" 398 "number": "10.8"
399 } 399 }
400 }, 400 },
401 "vendor_id": "0x8086", 401 "vendor_id": "0x8086",
402 "features": [ 402 "features": [
403 "disable_async_readpixels" 403 "disable_async_readpixels"
404 ] 404 ]
405 },
406 {
407 "id": 26,
408 "description": "Disable use of Direct3D 11 on Windows Vista",
409 "os": {
410 "type": "win",
411 "version": {
412 "op": "<",
413 "number": "6.1"
414 }
415 },
416 "features": [
417 "disable_d3d11"
418 ]
405 } 419 }
406 ] 420 ]
407 } 421 }
408 422
409 ); // LONG_STRING_CONST macro 423 ); // LONG_STRING_CONST macro
410 424
411 } // namespace gpu 425 } // namespace gpu
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698