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

Unified Diff: content/renderer/renderer_blink_platform_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: address kbr@'s comment Created 4 years, 7 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/renderer_blink_platform_impl.cc
diff --git a/content/renderer/renderer_blink_platform_impl.cc b/content/renderer/renderer_blink_platform_impl.cc
index 232f991e9b508206930090a52dd9cbdb3609b276..08143319d5f0def8345bde39c1c572e826549534 100644
--- a/content/renderer/renderer_blink_platform_impl.cc
+++ b/content/renderer/renderer_blink_platform_impl.cc
@@ -1014,7 +1014,8 @@ RendererBlinkPlatformImpl::createOffscreenGraphicsContext3DProvider(
const blink::Platform::ContextAttributes& web_attributes,
const blink::WebURL& top_document_web_url,
blink::WebGraphicsContext3DProvider* share_provider,
- blink::Platform::GraphicsInfo* gl_info) {
+ blink::Platform::GraphicsInfo* gl_info,
+ blink::Platform::WillBindToCurrentThread will_bind_to_current_thread) {
DCHECK(gl_info);
if (!RenderThreadImpl::current()) {
std::string error_message("Failed to run in Current RenderThreadImpl");
@@ -1036,6 +1037,9 @@ RendererBlinkPlatformImpl::createOffscreenGraphicsContext3DProvider(
static_cast<content::WebGraphicsContext3DProviderImpl*>(share_provider);
ContextProviderCommandBuffer* share_context = nullptr;
+ if (will_bind_to_current_thread == blink::Platform::DoNotBindToCurrentThread)
+ DCHECK(!share_provider_impl);
+
// WebGL contexts must fail creation if the share group is lost.
if (share_provider_impl) {
auto* gl = share_provider_impl->contextGL();
@@ -1078,11 +1082,13 @@ RendererBlinkPlatformImpl::createOffscreenGraphicsContext3DProvider(
GURL(top_document_web_url), gpu_preference, automatic_flushes,
gpu::SharedMemoryLimits(), attributes, share_context,
command_buffer_metrics::OFFSCREEN_CONTEXT_FOR_WEBGL));
- if (!provider->BindToCurrentThread()) {
- // Collect Graphicsinfo if there is a context failure or it is failed
- // purposefully in case of layout tests.
- Collect3DContextInformationOnFailure(gl_info, gpu_info);
- return nullptr;
+ if (will_bind_to_current_thread == blink::Platform::BindToCurrentThread) {
+ if (!provider->BindToCurrentThread()) {
+ // Collect Graphicsinfo if there is a context failure or it is failed
+ // purposefully in case of layout tests.
+ Collect3DContextInformationOnFailure(gl_info, gpu_info);
+ return nullptr;
+ }
}
return new WebGraphicsContext3DProviderImpl(std::move(provider));
}
« no previous file with comments | « content/renderer/renderer_blink_platform_impl.h ('k') | content/renderer/webgraphicscontext3d_provider_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698