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

Unified Diff: content/renderer/render_thread_impl.cc

Issue 101223005: Plumbing explicit share groups through context creation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/render_thread_impl.cc
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
index 56a15b0aa4251f597a948644485fcb271996e77f..fa06fdbb1c92990bd19676b8034eb75aff1014d8 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -899,7 +899,8 @@ RenderThreadImpl::GetGpuFactories() {
gpu_channel_host.get(),
blink::WebGraphicsContext3D::Attributes(),
GURL("chrome://gpu/RenderThreadImpl::GetGpuVDAContext3D"),
- WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits())),
+ WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits(),
+ NULL)),
"GPU-VideoAccelerator-Offscreen");
}
}
@@ -926,7 +927,8 @@ RenderThreadImpl::CreateOffscreenContext3d() {
gpu_channel_host.get(),
attributes,
GURL("chrome://gpu/RenderThreadImpl::CreateOffscreenContext3d"),
- WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits()));
+ WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits(),
+ NULL));
}
scoped_refptr<cc::ContextProvider>

Powered by Google App Engine
This is Rietveld 408576698