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

Side by Side Diff: gpu/software_rendering_list/software_rendering_list.json

Issue 10539024: Disable GPU acceleration on Leopard, and GeForce 9400M on Mac. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 8 years, 6 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 // "contains", "beginwith", "endwith", "=". "value" is a string. 54 // "contains", "beginwith", "endwith", "=". "value" is a string.
55 // 55 //
56 // FLOAT includes "op" "value", and "value2". "op" can be any of the 56 // FLOAT includes "op" "value", and "value2". "op" can be any of the
57 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is 57 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is
58 // only used if "op" is "between". "value" is used for all "op" values except 58 // only used if "op" is "between". "value" is used for all "op" values except
59 // "any". "value" and "value2" are valid float numbers. 59 // "any". "value" and "value2" are valid float numbers.
60 60
61 { 61 {
62 "name": "software rendering list", 62 "name": "software rendering list",
63 // Please update the version number whenever you change this file. 63 // Please update the version number whenever you change this file.
64 "version": "1.36", 64 "version": "1.37",
65 "entries": [ 65 "entries": [
66 { 66 {
67 "id": 1, 67 "id": 1,
68 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 68 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
69 "webkit_bugs": [47028], 69 "webkit_bugs": [47028],
70 "os": { 70 "os": {
71 "type": "macosx" 71 "type": "macosx"
72 }, 72 },
73 "vendor_id": "0x1002", 73 "vendor_id": "0x1002",
74 "device_id": ["0x7249"], 74 "device_id": ["0x7249"],
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 "type": "linux" 303 "type": "linux"
304 }, 304 },
305 "vendor_id": "0x10de", 305 "vendor_id": "0x10de",
306 "device_id": ["0x029e"], 306 "device_id": ["0x029e"],
307 "blacklist": [ 307 "blacklist": [
308 "all" 308 "all"
309 ] 309 ]
310 }, 310 },
311 { 311 {
312 "id": 19, 312 "id": 19,
313 "description": "Accelerated 2d canvas and accelerated compositing are not supported in Mac OSX version 10.5.", 313 "description": "GPU accelerated are no longer supported in Leopard",
Ken Russell (switch to Gerrit) 2012/06/06 18:06:43 GPU acceleration is no longer...
314 "cr_bugs": [87157], 314 "cr_bugs": [87157, 130495],
315 "os": { 315 "os": {
316 "type": "macosx", 316 "type": "macosx",
317 "version": { 317 "version": {
318 "op": "=", 318 "op": "=",
319 "number": "10.5" 319 "number": "10.5"
320 } 320 }
321 }, 321 },
322 "blacklist": [ 322 "blacklist": [
323 "accelerated_2d_canvas", 323 "all"
324 "accelerated_compositing"
325 ] 324 ]
326 }, 325 },
327 { 326 {
328 "id": 20, 327 "id": 20,
329 "description": "NVIDIA driver 260.19.06 on linux is crash-prone.", 328 "description": "NVIDIA driver 260.19.06 on linux is crash-prone.",
330 "cr_bugs": [82232, 82541], 329 "cr_bugs": [82232, 82541],
331 "os": { 330 "os": {
332 "type": "linux" 331 "type": "linux"
333 }, 332 },
334 "vendor_id": "0x10de", 333 "vendor_id": "0x10de",
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 "id": 37, 559 "id": 37,
561 "description": "Drivers are unreliable for Optimus on Linux.", 560 "description": "Drivers are unreliable for Optimus on Linux.",
562 "cr_bugs": [131308], 561 "cr_bugs": [131308],
563 "os": { 562 "os": {
564 "type": "linux" 563 "type": "linux"
565 }, 564 },
566 "multi_gpu_style": "optimus", 565 "multi_gpu_style": "optimus",
567 "blacklist": [ 566 "blacklist": [
568 "all" 567 "all"
569 ] 568 ]
569 },
570 {
571 "id": 38,
572 "description": "NVidia GeForce 9400M is buggy on Mac.",
573 "cr_bugs": [130495],
574 "os": {
575 "type": "macosx"
576 },
577 "vendor_id": "0x10de",
578 "device_id": ["0x0863"],
579 "blacklist": [
580 "all"
581 ]
570 } 582 }
571 ] 583 ]
572 } 584 }
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