diff options
author | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-10 22:17:30 +0000 |
---|---|---|
committer | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-10 22:17:30 +0000 |
commit | 6660131b30e27199d969ac9b5f486f171f4292bc (patch) | |
tree | 5a8ae4248c4be3df375873f4476f0e24e3006d1a /gpu | |
parent | 857d4f594cea94c2c168ebd25d4944491f455f95 (diff) | |
download | chromium_src-6660131b30e27199d969ac9b5f486f171f4292bc.zip chromium_src-6660131b30e27199d969ac9b5f486f171f4292bc.tar.gz chromium_src-6660131b30e27199d969ac9b5f486f171f4292bc.tar.bz2 |
Revert 227819 "Revert 227583 "Disable image transport surface on..."
> Revert 227583 "Disable image transport surface on all windows ma..."
>
> > Disable image transport surface on all windows machines.
> >
> > We want to try using the direct presentation path everywhere, so blacklist texture sharing on all machines. If this works, we can delete the image transport surface code later.
> > We've made the image transport surface work even with the sandbox at full strength, so remove the code that reduces the GPU sandbox in this case.
> >
> > BUG=304369
> > R=kbr@chromium.org
> >
> > Review URL: https://codereview.chromium.org/26073002
>
> TBR=jbauman@chromium.org
> BUG=304369,305621,
>
> Review URL: https://codereview.chromium.org/26574008
TBR=jbauman@chromium.org
Review URL: https://codereview.chromium.org/26937002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228024 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu')
-rw-r--r-- | gpu/config/software_rendering_list_json.cc | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gpu/config/software_rendering_list_json.cc b/gpu/config/software_rendering_list_json.cc index 5256740..94587d8 100644 --- a/gpu/config/software_rendering_list_json.cc +++ b/gpu/config/software_rendering_list_json.cc @@ -18,7 +18,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( { "name": "software rendering list", // Please update the version number whenever you change this file. - "version": "6.11", + "version": "6.12", "entries": [ { "id": 1, @@ -1129,6 +1129,17 @@ LONG_STRING_CONST( "features": [ "accelerated_video_decode" ] + }, + { + "id": 79, + "description": "Texture sharing should be disabled on all Windows machines", + "cr_bugs": [304369], + "os": { + "type": "win" + }, + "features": [ + "texture_sharing" + ] } ] } |