Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Unified Diff: content/renderer/webgraphicscontext3d_provider_impl.cc

Issue 1914233006: Implement offscreenCanvas.getContext('webgl') on a worker thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: should work Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/webgraphicscontext3d_provider_impl.cc
diff --git a/content/renderer/webgraphicscontext3d_provider_impl.cc b/content/renderer/webgraphicscontext3d_provider_impl.cc
index 17f34bc3a8ffbca219da56ec8ecf0e72a2f89b3e..1dbb6e529fd197bea546ea1ee83e3bf090bb5cdb 100644
--- a/content/renderer/webgraphicscontext3d_provider_impl.cc
+++ b/content/renderer/webgraphicscontext3d_provider_impl.cc
@@ -6,6 +6,7 @@
#include "content/common/gpu/client/context_provider_command_buffer.h"
#include "gpu/command_buffer/client/context_support.h"
+#include "gpu/ipc/client/command_buffer_proxy_impl.h"
#include "third_party/WebKit/public/platform/functional/WebFunction.h"
namespace content {
@@ -20,6 +21,12 @@ gpu::gles2::GLES2Interface* WebGraphicsContext3DProviderImpl::contextGL() {
return provider_->ContextGL();
}
+void WebGraphicsContext3DProviderImpl::DetachFromThread() {
Ken Russell (switch to Gerrit) 2016/05/04 21:02:56 I'm very uncomfortable with using these primitives
+ provider_->GetCommandBufferProxy()->DetachFromThread();
+ provider_->DetachFromThread();
+ provider_->BindToCurrentThread();
+}
+
GrContext* WebGraphicsContext3DProviderImpl::grContext() {
return provider_->GrContext();
}

Powered by Google App Engine
This is Rietveld 408576698