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

Unified Diff: chrome/browser/resources/software_rendering_list.json

Issue 7236023: Manage gpu feature capabilities through blacklist indepedently. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/gpu/gpu_data_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/software_rendering_list.json
===================================================================
--- chrome/browser/resources/software_rendering_list.json (revision 89958)
+++ chrome/browser/resources/software_rendering_list.json (working copy)
@@ -47,7 +47,7 @@
{
"name": "software rendering list",
// Please update the version number whenever you change this file.
- "version": "1.12",
+ "version": "1.13",
"entries": [
{
"id": 1,
@@ -103,7 +103,7 @@
},
{
"id": 8,
- "description": "NVIDIA GeForce FX Go5200 does not support WebGL or accelerated compositing.",
+ "description": "NVIDIA GeForce FX Go5200 is assumed to be buggy.",
"cr_bugs": [72938],
"os": {
"type": "any"
@@ -111,8 +111,7 @@
"vendor_id": "0x10de",
"device_id": ["0x0324"],
"blacklist": [
- "webgl",
- "accelerated_compositing"
+ "all"
]
},
{
@@ -244,6 +243,22 @@
"blacklist": [
"all"
]
+ },
+ {
+ "id": 19,
+ "description": "Mac Leopard does not support accelerated_2d_canvas and accelerated_compositing.",
vangelis 2011/06/27 17:43:16 nit: replace "Leopard" by "OSX 10.5" as I think fe
Zhenyao Mo 2011/06/27 20:24:21 Done.
+ "cr_bugs": [87157],
+ "os": {
+ "type": "macosx",
+ "version": {
+ "op": "=",
+ "number": "10.5"
vangelis 2011/06/27 17:43:16 Will this catch version 10.5.x which is most likel
Zhenyao Mo 2011/06/27 20:24:21 Yes, it will catch 10.5 or 10.5.*
+ }
+ },
+ "blacklist": [
+ "accelerated_2d_canvas",
+ "accelerated_compositing"
vangelis 2011/06/27 17:43:16 Isn't accelerated canvas disabled automatically wh
Zhenyao Mo 2011/06/27 20:24:21 I feel by not having this dependency logic we have
+ ]
}
]
}
« no previous file with comments | « no previous file | content/browser/gpu/gpu_data_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698