HomeSort by relevance Sort by last modified time
    Searched refs:share_group (Results 1 - 25 of 46) 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 26 GLNonOwnedContext(GLShareGroup* share_group);
48 GLNonOwnedContext::GLNonOwnedContext(GLShareGroup* share_group)
49 : GLContextReal(share_group), display_(NULL) {}
75 GLShareGroup* share_group,
83 context = new GLContextEGL(share_group);
85 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 84 gfx::GLShareGroup* share_group = NULL; local
86 share_group = options.share_group_manager->share_group();
88 share_group = options.share_mailbox_manager->share_group();
96 options.share_group_manager->gles2_implementation()->share_group();
107 share_group ? share_group : new gfx::GLShareGroup;
gl_manager.h 81 gfx::GLShareGroup* share_group() const { function in class:gpu::GLManager
  /external/chromium_org/gpu/command_buffer/client/
gl_in_process_context.cc 195 scoped_refptr<gles2::ShareGroup> share_group; local
206 share_group = context->gles2_implementation_->share_group();
208 DCHECK(share_group);
216 share_group = impl->gles2_implementation_->share_group();
218 DCHECK(share_group);
251 share_group,
  /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,
in_process_command_buffer.h 78 InProcessCommandBuffer* share_group);
159 InProcessCommandBuffer* share_group)
166 context_group(share_group) {}
  /external/chromium_org/content/common/gpu/client/
gpu_channel_host.cc 124 CommandBufferProxyImpl* share_group,
135 share_group ? share_group->GetRouteID() : MSG_ROUTING_NONE;
154 CommandBufferProxyImpl* share_group,
162 share_group ? share_group->GetRouteID() : MSG_ROUTING_NONE;
  /external/chromium_org/content/common/gpu/
gpu_channel.h 68 gfx::GLShareGroup* share_group,
129 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 247 milliseconds

1 2