HomeSort by relevance Sort by last modified time
    Searched refs:share_group (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium_org/ui/gl/
gl_context_win.cc 24 GLShareGroup* share_group,
30 scoped_refptr<GLContext> context(new GLContextOSMesa(share_group));
37 scoped_refptr<GLContext> context(new GLContextEGL(share_group));
44 scoped_refptr<GLContext> context(new GLContextWGL(share_group));
gl_context_x11.cc 26 GLShareGroup* share_group,
32 scoped_refptr<GLContext> context(new GLContextOSMesa(share_group));
39 scoped_refptr<GLContext> context(new GLContextGLX(share_group));
46 scoped_refptr<GLContext> context(new GLContextEGL(share_group));
gl_context_ozone.cc 21 GLShareGroup* share_group,
29 scoped_refptr<GLContext> context(new GLContextOSMesa(share_group));
35 scoped_refptr<GLContext> context(new GLContextEGL(share_group));
gl_context_android.cc 25 GLNonOwnedContext(GLShareGroup* share_group);
47 GLNonOwnedContext::GLNonOwnedContext(GLShareGroup* share_group)
48 : GLContextReal(share_group) {}
64 GLShareGroup* share_group,
72 context = new GLContextEGL(share_group);
74 context = new GLNonOwnedContext(share_group);
gl_context.h 25 explicit GLContext(GLShareGroup* share_group);
79 GLShareGroup* share_group();
82 // |share_group|, if non-NULL, is a group of contexts which the
85 GLShareGroup* share_group,
136 explicit GLContextReal(GLShareGroup* share_group);
gl_context_osmesa.cc 16 GLContextOSMesa::GLContextOSMesa(GLShareGroup* share_group)
17 : GLContextReal(share_group),
26 share_group() ? share_group()->GetHandle() : NULL);
gl_context_wgl.h 20 explicit GLContextWGL(GLShareGroup* share_group);
gl_context.cc 28 GLContext::GLContext(GLShareGroup* share_group) : share_group_(share_group) {
71 GLShareGroup* GLContext::share_group() { function in class:gfx::GLContext
150 GLContextReal::GLContextReal(GLShareGroup* share_group)
151 : GLContext(share_group) {}
gl_context_wgl.cc 17 GLContextWGL::GLContextWGL(GLShareGroup* share_group)
18 : GLContextReal(share_group),
44 HGLRC share_handle = static_cast<HGLRC>(share_group()->GetHandle());
gl_context_egl.cc 27 GLContextEGL::GLContextEGL(GLShareGroup* share_group)
28 : GLContextReal(share_group),
68 share_group() ? share_group()->GetHandle() : NULL,
gl_context_glx.h 22 explicit GLContextGLX(GLShareGroup* share_group);
gl_context_osmesa.h 22 explicit GLContextOSMesa(GLShareGroup* share_group);
gl_context_cgl.h 19 explicit GLContextCGL(GLShareGroup* share_group);
gl_context_egl.h 24 explicit GLContextEGL(GLShareGroup* share_group);
gl_context_glx.cc 36 GLContextGLX::GLContextGLX(GLShareGroup* share_group)
37 : GLContextReal(share_group),
51 share_group() ? share_group()->GetHandle() : NULL);
gl_context_cgl.cc 67 GLContextCGL::GLContextCGL(GLShareGroup* share_group)
68 : GLContextReal(share_group),
84 GLContextCGL* share_context = share_group() ?
85 static_cast<GLContextCGL*>(share_group()->GetContext()) : NULL;
105 share_group()->SetRendererID(-1);
145 int renderer_id = share_group()->GetRendererID();
  /external/chromium_org/gpu/command_buffer/tests/
gl_manager.cc 83 gfx::GLShareGroup* share_group = NULL; local
85 share_group = options.share_group_manager->share_group();
87 share_group = options.share_mailbox_manager->share_group();
95 options.share_group_manager->gles2_implementation()->share_group();
114 share_group ? share_group : new gfx::GLShareGroup;
gl_manager.h 79 gfx::GLShareGroup* share_group() const { function in class:gpu::GLManager
  /external/chromium_org/gpu/command_buffer/service/
gl_context_virtual.cc 14 gfx::GLShareGroup* share_group,
17 : GLContext(share_group),
gl_context_virtual.h 30 gfx::GLShareGroup* share_group,
  /external/chromium_org/content/common/gpu/client/
gpu_channel_host.cc 111 CommandBufferProxyImpl* share_group,
123 share_group ? share_group->GetRouteID() : MSG_ROUTING_NONE;
143 CommandBufferProxyImpl* share_group,
152 share_group ? share_group->GetRouteID() : MSG_ROUTING_NONE;
gpu_channel_host.h 110 CommandBufferProxyImpl* share_group,
119 CommandBufferProxyImpl* share_group,
  /external/chromium_org/gpu/command_buffer/client/
gl_in_process_context.cc 240 scoped_refptr<gles2::ShareGroup> share_group; local
250 share_group = context->gles2_implementation_->share_group();
251 DCHECK(share_group);
257 if (!share_group && !++share_group_id_)
288 share_group,
  /external/chromium_org/content/common/gpu/
gpu_channel.h 65 gfx::GLShareGroup* share_group,
122 gfx::GLShareGroup* share_group() const { return share_group_.get(); } function in class:content::GpuChannel
  /external/chromium_org/ui/surface/
accelerated_surface_mac.cc 48 gfx::GLShareGroup* share_group = local
49 share_context ? share_context->share_group() : NULL;
52 share_group,

Completed in 387 milliseconds

1 2