Index: content/renderer/renderer_webkitplatformsupport_impl.cc |
diff --git a/content/renderer/renderer_webkitplatformsupport_impl.cc b/content/renderer/renderer_webkitplatformsupport_impl.cc |
index c150e0c624ae7bda6806483818d2a117c2a8e005..a6b1342c428988a25118a417d6cd37e6504037d4 100644 |
--- a/content/renderer/renderer_webkitplatformsupport_impl.cc |
+++ b/content/renderer/renderer_webkitplatformsupport_impl.cc |
@@ -954,26 +954,32 @@ RendererWebKitPlatformSupportImpl::createOffscreenGraphicsContext3D( |
if (!RenderThreadImpl::current()) |
return NULL; |
+ scoped_ptr<webkit::gpu::WebGraphicsContext3DImpl> context; |
#if defined(OS_ANDROID) |
if (SynchronousCompositorFactory* factory = |
SynchronousCompositorFactory::GetInstance()) { |
- return factory->CreateOffscreenGraphicsContext3D(attributes); |
- } |
+ context.reset(factory->CreateOffscreenGraphicsContext3D(attributes)); |
+ } else |
#endif |
- |
- scoped_refptr<GpuChannelHost> gpu_channel_host( |
- RenderThreadImpl::current()->EstablishGpuChannelSync( |
- CAUSE_FOR_GPU_LAUNCH_WEBGRAPHICSCONTEXT3DCOMMANDBUFFERIMPL_INITIALIZE)); |
- |
- WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits limits; |
- bool lose_context_when_out_of_memory = false; |
- return WebGraphicsContext3DCommandBufferImpl::CreateOffscreenContext( |
- gpu_channel_host.get(), |
- attributes, |
- lose_context_when_out_of_memory, |
- GURL(attributes.topDocumentURL), |
- limits, |
- static_cast<WebGraphicsContext3DCommandBufferImpl*>(share_context)); |
+ { |
+ scoped_refptr<GpuChannelHost> gpu_channel_host( |
+ RenderThreadImpl::current()->EstablishGpuChannelSync( |
+ CAUSE_FOR_GPU_LAUNCH_WEBGRAPHICSCONTEXT3DCOMMANDBUFFERIMPL_INITIALIZE)); |
+ |
+ WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits limits; |
+ bool lose_context_when_out_of_memory = false; |
+ context.reset(WebGraphicsContext3DCommandBufferImpl::CreateOffscreenContext( |
+ gpu_channel_host.get(), |
+ attributes, |
+ lose_context_when_out_of_memory, |
+ GURL(attributes.topDocumentURL), |
+ limits, |
+ static_cast<WebGraphicsContext3DCommandBufferImpl*>(share_context))); |
+ } |
+ if (context && !context->BindToCurrentThread()) { |
piman
2014/08/15 17:47:34
Are contexts created by this API exclusively used
|
+ return NULL; |
+ } |
+ return context.release(); |
} |
//------------------------------------------------------------------------------ |