Commit 4a6274b2 authored by sievers@google.com's avatar sievers@google.com

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
parent 70056a76
...@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST( ...@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{ {
"name": "gpu driver bug list", "name": "gpu driver bug list",
// Please update the version number whenever you change this file. // Please update the version number whenever you change this file.
"version": "6.4", "version": "6.5",
"entries": [ "entries": [
{ {
"id": 1, "id": 1,
...@@ -1049,6 +1049,25 @@ LONG_STRING_CONST( ...@@ -1049,6 +1049,25 @@ LONG_STRING_CONST(
"features": [ "features": [
"disable_arb_sync" "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"
]
} }
] ]
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment