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

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: Rebase Created 6 years, 10 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/render_thread_impl.cc
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
index 753244fbd4e2fc9e7c22bdeae970e52645a8215a..c266cab00d88d6f98300dfbc2609ba23833c9937 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -910,7 +910,8 @@ RenderThreadImpl::GetGpuFactories() {
gpu_channel_host.get(),
blink::WebGraphicsContext3D::Attributes(),
GURL("chrome://gpu/RenderThreadImpl::GetGpuVDAContext3D"),
- WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits())),
+ WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits(),
+ NULL)),
"GPU-VideoAccelerator-Offscreen");
if (gpu_va_context_provider_) {
media_loop_proxy->PostTask(
@@ -944,7 +945,8 @@ RenderThreadImpl::CreateOffscreenContext3d() {
gpu_channel_host.get(),
attributes,
GURL("chrome://gpu/RenderThreadImpl::CreateOffscreenContext3d"),
- WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits()));
+ WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits(),
+ NULL));
}
scoped_refptr<cc::ContextProvider>
« no previous file with comments | « content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698