diff options
author | sievers@chromium.org <sievers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-01 23:57:56 +0000 |
---|---|---|
committer | sievers@chromium.org <sievers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-01 23:57:56 +0000 |
commit | 92dd777782cec8b8add8dcf2d4a3618c3ebbc21a (patch) | |
tree | c0b73e8072a880accc293f734ddea14fc4b8995a /android_webview/DEPS | |
parent | bd9934815e7974c56e8a205c6e3e08d0dbf27872 (diff) | |
download | chromium_src-92dd777782cec8b8add8dcf2d4a3618c3ebbc21a.zip chromium_src-92dd777782cec8b8add8dcf2d4a3618c3ebbc21a.tar.gz chromium_src-92dd777782cec8b8add8dcf2d4a3618c3ebbc21a.tar.bz2 |
GLInProcessContext: support async flushes and dedicated GPU thread
This separates the command buffer client and service portions in
GLInProcessContext.
It removes the 'big lock', which was used to flush commands instantly
and on the calling thread (GL client thread). Instead it now creates a
dedicated GPU thread.
For Android WebView, it further allows the GPU message loop to be
explicitly processed (because a context is only available at given times
on a specific thread).
BUG=246450,239760,234964
Review URL: https://chromiumcodereview.appspot.com/19522006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215144 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/DEPS')
-rw-r--r-- | android_webview/DEPS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android_webview/DEPS b/android_webview/DEPS index 5f848d2..1ce4c33 100644 --- a/android_webview/DEPS +++ b/android_webview/DEPS @@ -8,7 +8,7 @@ include_rules = [ "-android_webview/lib", "+content/public/common", - "+gpu/command_buffer/client", + "+gpu", "+jni", "+net", "+skia", |