Commit 4394f60e authored by Daniel Sievers's avatar Daniel Sievers

Disable multisampled_render_to_texture extension on Adreno.

Disable multisampled_render_to_texture extension on Adreno.

This extension is buggy in Android 5.0 on Nexus6.  We'll turn it off
for 43 by merging this revert, then land a more nuanced blacklist for
44.

R=kbr@chromium.org
BUG=490379

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

Cr-Commit-Position: refs/heads/master@{#330848}
parent ff70806c
...@@ -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": "8.05", "version": "8.06",
"entries": [ "entries": [
{ {
"id": 1, "id": 1,
...@@ -610,7 +610,8 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST( ...@@ -610,7 +610,8 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
}, },
"gl_vendor": "Qualcomm.*", "gl_vendor": "Qualcomm.*",
"features": [ "features": [
"disable_chromium_framebuffer_multisample" "disable_chromium_framebuffer_multisample",
"disable_multisampled_render_to_texture"
] ]
}, },
{ {
......
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