summaryrefslogtreecommitdiffstats
path: root/gpu/config
diff options
context:
space:
mode:
authorajuma@chromium.org <ajuma@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-13 15:52:11 +0000
committerajuma@chromium.org <ajuma@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-13 15:53:20 +0000
commit621b4db86b7ec2020b60be5bc8a14a57c8f055fe (patch)
tree97301ed7f234b9bd03f3b6f3eeb2ebea223705f9 /gpu/config
parent1cf61c4b7247e4c75179e247c53e390b2355c9bc (diff)
downloadchromium_src-621b4db86b7ec2020b60be5bc8a14a57c8f055fe.zip
chromium_src-621b4db86b7ec2020b60be5bc8a14a57c8f055fe.tar.gz
chromium_src-621b4db86b7ec2020b60be5bc8a14a57c8f055fe.tar.bz2
Whitelist Qualcomm GPUs for GPU rasterization on Android 4.4
This expands the GPU rasterization device whitelist to include all Android 4.4 devices with Qualcomm GPUs. BUG=None Review URL: https://codereview.chromium.org/463043004 Cr-Commit-Position: refs/heads/master@{#289301} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289301 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/config')
-rw-r--r--gpu/config/software_rendering_list_json.cc38
1 files changed, 33 insertions, 5 deletions
diff --git a/gpu/config/software_rendering_list_json.cc b/gpu/config/software_rendering_list_json.cc
index e0eab81..8b3206e3 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": "8.10",
+ "version": "8.11",
"entries": [
{
"id": 1,
@@ -1126,13 +1126,13 @@ LONG_STRING_CONST(
},
{
"id": 96,
- "description": "GPU rasterization is whitelisted on N4, N5, N7 and Moto X",
+ "description": "GPU rasterization is whitelisted on N4, N5, N7 and Moto X, and on Qualcomm GPUs on Android 4.4",
"cr_bugs": [362779],
+ "os": {
+ "type": "android"
+ },
"exceptions": [
{
- "os": {
- "type": "android"
- },
"machine_model_name": ["Nexus 4", "Nexus 5", "Nexus 7",
"XT1049", "XT1050", "XT1052", "XT1053",
"XT1055", "XT1056", "XT1058", "XT1060"]
@@ -1145,6 +1145,19 @@ LONG_STRING_CONST(
"value": "4.4.99"
}
}
+ },
+ {
+ "os": {
+ "type": "android",
+ "version": {
+ "op": ">=",
+ "value": "4.4"
+ }
+ },
+ "gl_vendor": {
+ "op": "beginwith",
+ "value": "Qualcomm"
+ }
}
],
"features": [
@@ -1191,6 +1204,21 @@ LONG_STRING_CONST(
"features": [
"gpu_rasterization_expanded_heuristics"
]
+ },
+ {
+ "id": 99,
+ "description": "GPU rasterization is blacklisted on non-Android",
+ "cr_bugs": [362779],
+ "exceptions": [
+ {
+ "os": {
+ "type": "android"
+ }
+ }
+ ],
+ "features": [
+ "gpu_rasterization"
+ ]
}
]
}