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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is | 47 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is |
48 // only used if "op" is "between". "number" is used for all "op" values except | 48 // only used if "op" is "between". "number" is used for all "op" values except |
49 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. | 49 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. |
50 // | 50 // |
51 // STRING includes "op" and "value". "op" can be any of the following values: | 51 // STRING includes "op" and "value". "op" can be any of the following values: |
52 // "contains", "beginwith", "endwith", "=". "value" is a string. | 52 // "contains", "beginwith", "endwith", "=". "value" is a string. |
53 | 53 |
54 { | 54 { |
55 "name": "software rendering list", | 55 "name": "software rendering list", |
56 // Please update the version number whenever you change this file. | 56 // Please update the version number whenever you change this file. |
57 "version": "1.21", | 57 "version": "1.22", |
58 "entries": [ | 58 "entries": [ |
59 { | 59 { |
60 "id": 1, | 60 "id": 1, |
61 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 61 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
62 "webkit_bugs": [47028], | 62 "webkit_bugs": [47028], |
63 "os": { | 63 "os": { |
64 "type": "macosx" | 64 "type": "macosx" |
65 }, | 65 }, |
66 "vendor_id": "0x1002", | 66 "vendor_id": "0x1002", |
67 "device_id": ["0x7249"], | 67 "device_id": ["0x7249"], |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 "description": "Accelerated 2d canvas is unstable in Linux at the moment."
, | 372 "description": "Accelerated 2d canvas is unstable in Linux at the moment."
, |
373 "os": { | 373 "os": { |
374 "type": "linux" | 374 "type": "linux" |
375 }, | 375 }, |
376 "blacklist": [ | 376 "blacklist": [ |
377 "accelerated_2d_canvas" | 377 "accelerated_2d_canvas" |
378 ] | 378 ] |
379 }, | 379 }, |
380 { | 380 { |
381 "id": 27, | 381 "id": 27, |
382 "description": "Disable open source drivers for ATI/AMD cards in Linux.", | 382 "description": "ATI/AMD cards with older drivers in Linux are crash-prone.
", |
383 "cr_bugs": [95934], | 383 "cr_bugs": [95934, 94973], |
384 "os": { | 384 "os": { |
385 "type": "linux" | 385 "type": "linux" |
386 }, | 386 }, |
387 "driver_vendor": { | 387 "gl_vendor": { |
388 "op": "contains", | 388 "op": "beginwith", |
389 "value": "SGI" | 389 "value": "ATI" |
390 }, | 390 }, |
391 "exceptions": [ | 391 "exceptions": [ |
392 { | 392 { |
393 "vendor_id": "0x8086" | 393 "driver_vendor": { |
394 }, | 394 "op": "contains", |
395 { | 395 "value": "AMD" |
396 "vendor_id": "0x10de" | 396 }, |
| 397 "driver_version": { |
| 398 "op": ">=", |
| 399 "number": "8.92" |
| 400 } |
397 } | 401 } |
398 ], | 402 ], |
399 "blacklist": [ | 403 "blacklist": [ |
400 "all" | 404 "all" |
401 ] | 405 ] |
| 406 }, |
| 407 { |
| 408 "id": 28, |
| 409 "description": "ATI/AMD cards with third-party drivers in Linux are crash-
prone.", |
| 410 "cr_bugs": [95934, 94973], |
| 411 "os": { |
| 412 "type": "linux" |
| 413 }, |
| 414 "gl_vendor": { |
| 415 "op": "beginwith", |
| 416 "value": "X.Org" |
| 417 }, |
| 418 "gl_renderer": { |
| 419 "op": "contains", |
| 420 "value": "AMD" |
| 421 }, |
| 422 "blacklist": [ |
| 423 "all" |
| 424 ] |
| 425 }, |
| 426 { |
| 427 "id": 29, |
| 428 "description": "ATI/AMD cards with third-party drivers in Linux are crash-
prone.", |
| 429 "cr_bugs": [95934, 94973], |
| 430 "os": { |
| 431 "type": "linux" |
| 432 }, |
| 433 "gl_vendor": { |
| 434 "op": "beginwith", |
| 435 "value": "X.Org" |
| 436 }, |
| 437 "gl_renderer": { |
| 438 "op": "contains", |
| 439 "value": "ATI" |
| 440 }, |
| 441 "blacklist": [ |
| 442 "all" |
| 443 ] |
402 } | 444 } |
403 ] | 445 ] |
404 } | 446 } |
OLD | NEW |