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

Side by Side Diff: chrome/browser/resources/software_rendering_list.json

Issue 7874004: Blacklist older drivers for Intel GMA X4500/HD on Win7. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Determines whether certain gpu-related features are blacklisted or not. 1 // Determines whether certain gpu-related features are blacklisted or not.
2 // A valid software_rendering_list.json file are in the format of 2 // A valid software_rendering_list.json file are in the format of
3 // { 3 // {
4 // "version": "x.y", 4 // "version": "x.y",
5 // "entries": [ 5 // "entries": [
6 // { // entry 1 6 // { // entry 1
7 // }, 7 // },
8 // ... 8 // ...
9 // { // entry n 9 // { // entry n
10 // } 10 // }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is 45 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is
46 // only used if "op" is "between". "number" is used for all "op" values except 46 // only used if "op" is "between". "number" is used for all "op" values except
47 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. 47 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc.
48 // 48 //
49 // STRING includes "op" and "value". "op" can be any of the following values: 49 // STRING includes "op" and "value". "op" can be any of the following values:
50 // "contains", "beginwith", "endwith", "=". "value" is a string. 50 // "contains", "beginwith", "endwith", "=". "value" is a string.
51 51
52 { 52 {
53 "name": "software rendering list", 53 "name": "software rendering list",
54 // Please update the version number whenever you change this file. 54 // Please update the version number whenever you change this file.
55 "version": "1.17", 55 "version": "1.18",
56 "entries": [ 56 "entries": [
57 { 57 {
58 "id": 1, 58 "id": 1,
59 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 59 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
60 "webkit_bugs": [47028], 60 "webkit_bugs": [47028],
61 "os": { 61 "os": {
62 "type": "macosx" 62 "type": "macosx"
63 }, 63 },
64 "vendor_id": "0x1002", 64 "vendor_id": "0x1002",
65 "device_id": ["0x7249"], 65 "device_id": ["0x7249"],
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 }, 355 },
356 { 356 {
357 "id": 24, 357 "id": 24,
358 "description": "Accelerated 2d canvas is unstable in Linux at the moment." , 358 "description": "Accelerated 2d canvas is unstable in Linux at the moment." ,
359 "os": { 359 "os": {
360 "type": "linux" 360 "type": "linux"
361 }, 361 },
362 "blacklist": [ 362 "blacklist": [
363 "accelerated_2d_canvas" 363 "accelerated_2d_canvas"
364 ] 364 ]
365 },
366 {
367 "id": 25,
368 "description": "Some Intel GMA X4500/HD family of chipsets (0x2a42, 0x2a43 ) in Win7 requires driver 15.17.11.2202 or newer.",
369 "cr_bugs": [94268],
370 "os": {
371 "type": "win",
372 "version": {
373 "op": "=",
374 "number": "6.1"
375 }
376 },
377 "vendor_id": "0x8086",
378 "device_id": ["0x2a42", "0x2a43"],
379 "driver_version": {
380 "op": "<",
381 "number": "8.15.10.2202"
382 },
383 "blacklist": [
384 "all"
385 ]
386 },
387 {
388 "id": 26,
389 "description": "Some Intel GMA X4500/HD family of chipsets (0x0042, 0x0046 ) in Win7 requires drivers newer than 15.17.11.2202",
390 "cr_bugs": [91445, 94269],
391 "os": {
392 "type": "win",
393 "version": {
394 "op": "=",
395 "number": "6.1"
396 }
397 },
398 "vendor_id": "0x8086",
399 "device_id": ["0x0042", "0x0046"],
400 "driver_version": {
401 "op": "<=",
402 "number": "8.15.10.2202"
403 },
404 "blacklist": [
405 "all"
406 ]
365 } 407 }
366 ] 408 ]
367 } 409 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698