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

1 2 3

  /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 GLContextOSMesa(share_group);
87 context = new GLContextEGL(share_group);
89 context = new GLNonOwnedContext(share_group);
gl_context.h 28 explicit GLContext(GLShareGroup* share_group);
105 GLShareGroup* share_group();
108 // |share_group|, if non-NULL, is a group of contexts which the
111 GLShareGroup* share_group,
186 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_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.cc 55 GLContext::GLContext(GLShareGroup* share_group) : share_group_(share_group) {
129 GLShareGroup* GLContext::share_group() { function in class:gfx::GLContext
220 GLContextReal::GLContextReal(GLShareGroup* share_group)
221 : GLContext(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 21 GLContextGLX::GLContextGLX(GLShareGroup* share_group)
22 : GLContextReal(share_group),
36 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/mojo/services/native_viewport/
gpu_impl.cc 15 const scoped_refptr<gfx::GLShareGroup>& share_group,
17 : share_group_(share_group), mailbox_manager_(mailbox_manager) {
gpu_impl.h 27 GpuImpl(const scoped_refptr<gfx::GLShareGroup>& share_group,
  /external/chromium_org/gpu/command_buffer/client/
gl_in_process_context.cc 150 scoped_refptr<gles2::ShareGroup> share_group; local
161 share_group = context->gles2_implementation_->share_group();
163 DCHECK(share_group.get());
171 share_group = impl->gles2_implementation_->share_group();
173 DCHECK(share_group.get());
207 share_group.get(),
  /external/chromium_org/mojo/services/gles2/
command_buffer_impl.h 36 CommandBufferImpl(gfx::GLShareGroup* share_group,
41 gfx::GLShareGroup* share_group,
command_buffer_impl.cc 49 gfx::GLShareGroup* share_group,
53 share_group_(share_group),
60 gfx::GLShareGroup* share_group,
64 share_group_(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,
  /external/chromium_org/content/common/gpu/client/
gpu_channel_host.cc 132 CommandBufferProxyImpl* share_group,
143 share_group ? share_group->GetRouteID() : MSG_ROUTING_NONE;
182 CommandBufferProxyImpl* share_group,
190 share_group ? share_group->GetRouteID() : MSG_ROUTING_NONE;
  /external/chromium_org/gpu/command_buffer/tests/
gl_manager.cc 134 gfx::GLShareGroup* share_group = NULL; local
136 share_group = options.share_group_manager->share_group();
138 share_group = options.share_mailbox_manager->share_group();
146 options.share_group_manager->gles2_implementation()->share_group();
157 share_group ? share_group : new gfx::GLShareGroup;

Completed in 1105 milliseconds

1 2 3