summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsievers@google.com <sievers@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-17 21:46:03 +0000
committersievers@google.com <sievers@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-17 21:46:03 +0000
commit4a6274b2228053c6b87d72abc559db1fd6ba4245 (patch)
treef43057ecc40ef7846eb98a6e482e2ace21ce162f
parent70056a76b95a49b799219d1d8c667c1cff3f9423 (diff)
downloadchromium_src-4a6274b2228053c6b87d72abc559db1fd6ba4245.zip
chromium_src-4a6274b2228053c6b87d72abc559db1fd6ba4245.tar.gz
chromium_src-4a6274b2228053c6b87d72abc559db1fd6ba4245.tar.bz2
Android: Disable async readpixels on pre-JB MR2 Qualcomm drivers
Seems to be ocassionally crashing when accessing the mapped PBO on at least certain Adreno 330 w/Android 4.2.2 configs. BUG=394510 Review URL: https://codereview.chromium.org/397353002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283889 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--gpu/config/gpu_driver_bug_list_json.cc21
1 files changed, 20 insertions, 1 deletions
diff --git a/gpu/config/gpu_driver_bug_list_json.cc b/gpu/config/gpu_driver_bug_list_json.cc
index 9aa3310..54c9002 100644
--- a/gpu/config/gpu_driver_bug_list_json.cc
+++ b/gpu/config/gpu_driver_bug_list_json.cc
@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{
"name": "gpu driver bug list",
// Please update the version number whenever you change this file.
- "version": "6.4",
+ "version": "6.5",
"entries": [
{
"id": 1,
@@ -1049,6 +1049,25 @@ LONG_STRING_CONST(
"features": [
"disable_arb_sync"
]
+ },
+ {
+ "id": 82,
+ "description": "PBO mappings segfault on certain older Qualcomm drivers",
+ "cr_bugs": [394510],
+ "os": {
+ "type": "android",
+ "version": {
+ "op": "<",
+ "value": "4.3"
+ }
+ },
+ "gl_vendor": {
+ "op": "beginwith",
+ "value": "Qualcomm"
+ },
+ "features": [
+ "disable_async_readpixels"
+ ]
}
]
}