Commit b99a547f authored by tsniatowski@opera.com's avatar tsniatowski@opera.com

Disable multisampling on Mali-400 GPUs and Android < 4.3

This avoids a GL error from a buggy glGetIntegerv(GL_MAX_SAMPLES_ANGLE)
call. Based on patch by mkisilev@yandex-team.ru

BUG=362435
R=sievers@chromium.org

Review URL: https://codereview.chromium.org/296133007

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272874 0039d316-1c4b-4281-b951-d872f2087c98
parent df9b4802
......@@ -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": "5.5",
"version": "5.6",
"entries": [
{
"id": 1,
......@@ -986,6 +986,29 @@ LONG_STRING_CONST(
"features": [
"disable_egl_khr_fence_sync"
]
},
{
"id": 75,
"description": "Mali-400 support of EXT_multisampled_render_to_texture is buggy on Android < 4.3",
"cr_bugs": [362435],
"os": {
"type": "android",
"version": {
"op": "<",
"value": "4.3"
}
},
"gl_vendor": {
"op": "beginwith",
"value": "ARM"
},
"gl_renderer": {
"op": "contains",
"value": "Mali-400"
},
"features": [
"disable_multisampling"
]
}
]
}
......
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