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

Unified Diff: content/renderer/gpu/renderer_gl_context.h

Issue 7554015: Implemented support for GL constext share groups in the renderer process. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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/gpu/renderer_gl_context.h
===================================================================
--- content/renderer/gpu/renderer_gl_context.h (revision 95161)
+++ content/renderer/gpu/renderer_gl_context.h (working copy)
@@ -100,6 +100,7 @@
static RendererGLContext* CreateViewContext(
GpuChannelHost* channel,
int render_view_id,
+ RendererGLContext* share_group,
const char* allowed_extensions,
const int32* attrib_list,
const GURL& active_arl);
@@ -122,6 +123,7 @@
static RendererGLContext* CreateOffscreenContext(
GpuChannelHost* channel,
const gfx::Size& size,
+ RendererGLContext* share_group,
const char* allowed_extensions,
const int32* attrib_list,
const GURL& active_url);
@@ -189,6 +191,7 @@
bool Initialize(bool onscreen,
int render_view_id,
const gfx::Size& size,
+ RendererGLContext* share_group,
const char* allowed_extensions,
const int32* attrib_list,
const GURL& active_url);

Powered by Google App Engine
This is Rietveld 408576698