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

Unified Diff: gpu/config/software_rendering_list_json.cc

Issue 183883026: Don't blacklist accelerated 2d canvas if WinStats are unavailable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment added Created 6 years, 10 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/software_rendering_list_json.cc
diff --git a/gpu/config/software_rendering_list_json.cc b/gpu/config/software_rendering_list_json.cc
index 35060a9299fcf37a7ac19d247bacc459203bb4df..7d33212f6cf5b2772ca40eafce35b726b464ea2b 100644
--- a/gpu/config/software_rendering_list_json.cc
+++ b/gpu/config/software_rendering_list_json.cc
@@ -18,7 +18,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
{
"name": "software rendering list",
// Please update the version number whenever you change this file.
- "version": "7.1",
+ "version": "7.2",
"entries": [
{
"id": 1,
@@ -326,7 +326,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
{
"id": 32,
"description": "Accelerated 2d canvas is disabled on Windows systems with low perf stats",
- "cr_bugs": [116350, 151500],
+ "cr_bugs": [116350, 151500, 349628],
"os": {
"type": "win"
},
@@ -346,6 +346,14 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
"op": "contains",
"value": "Atom"
}
+ },
+ // Don't blacklist accelerated 2D canvas if WinSAT scores haven't
+ // been gathered.
Ken Russell (switch to Gerrit) 2014/03/06 01:21:57 Careful! Comments like these aren't valid JSON. Do
+ {
+ "perf_overall": {
+ "op": "=",
+ "value": "0"
+ }
}
],
"features": [
« 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