OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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.", | |
vangelis
2011/09/12 23:20:33
How does 15.17.11.2202 match with the actual drive
| |
369 "crbugs": [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 "crbugs": [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 } |
OLD | NEW |