0

Disable ES3 msaa on ARM

BUG=321701
R=piman@chromium.org

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236832 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
sievers@chromium.org
2013-11-22 21:37:47 +00:00
parent c66c9731f8
commit 87b45d958e

@ -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": "3.5",
"version": "3.6",
"entries": [
{
"id": 1,
@ -709,6 +709,37 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
"features": [
"disable_framebuffer_multisample"
]
},
{
"id": 53,
"cr_bugs": [321701],
"description": "ES3 multisampling is too slow to be usable on Mali.",
"gl_vendor": {
"op": "beginwith",
"value": "ARM"
},
"gl_renderer": {
"op": "beginwith",
"value": "Mali"
},
"features": [
"disable_framebuffer_multisample"
]
},
{
"id": 54,
"cr_bugs": [321701],
"description": "ES3 multisampling is too slow to be usable on Mali (ChromeOS).",
"os": {
"type": "chromeos"
},
"cpu_info": {
"op": "=",
"value": "ARM" // TODO(piman): consolidate with id 53 (needs GL_VENDOR/GL_RENDERER parsing support)
},
"features": [
"disable_framebuffer_multisample"
]
}
]
}