forked from crosswalk-project/chromium-crosswalk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Android] Fix the render issue introduced by single process mode.
* In Chromium, single process mode is only for Android WebView, ContentShell and its derivatives only go to the multiple process mode. * The context design is only for multiple process mode(ContentShell/XWalk), if we force running it with single process mode, there are issues (black regions for video/canvas/webgl layers, and black screen for stop/restart actions). The reason is that Android port has browser-side compositor, and the shared context in browser-side compositor has conflicts with renderer's contexts if running in single process mode. * To run ContentShell/XWalk in single process mode, we have to resolve the shared context issue between renderer/browser. BUG=crosswalk-project/crosswalk#516 Conflicts: content/browser/renderer_host/compositor_impl_android.cc content/browser/renderer_host/image_transport_factory_android.cc content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h Rework with 32.0.1700.4 by Halton
- Loading branch information
Showing
4 changed files
with
81 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters