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

1 2 3 4 5

  /external/chromium_org/content/renderer/pepper/
ppb_graphics_3d_impl.cc 67 PP_Resource share_context,
70 if (share_context) {
71 EnterResourceNoLock<PPB_Graphics3D_API> enter(share_context, true);
85 PP_Resource share_context,
88 if (share_context) {
89 EnterResourceNoLock<PPB_Graphics3D_API> enter(share_context, true);
200 bool PPB_Graphics3D_Impl::Init(PPB_Graphics3D_API* share_context,
202 if (!InitRaw(share_context, attrib_list))
206 if (share_context) {
208 static_cast<PPB_Graphics3D_Shared*>(share_context)->gles2_impl()
    [all...]
ppb_graphics_3d_impl.h 20 PP_Resource share_context,
23 PP_Resource share_context,
70 bool Init(PPB_Graphics3D_API* share_context, const int32_t* attrib_list);
71 bool InitRaw(PPB_Graphics3D_API* share_context, const int32_t* attrib_list);
resource_creation_impl.cc 100 PP_Resource share_context,
102 return PPB_Graphics3D_Impl::Create(instance, share_context, attrib_list);
107 PP_Resource share_context,
109 return PPB_Graphics3D_Impl::CreateRaw(instance, share_context, attrib_list);
resource_creation_impl.h 52 PP_Resource share_context,
55 PP_Resource share_context,
  /external/chromium_org/ppapi/cpp/
graphics_3d.h 78 /// @param[in] share_context Specifies the context with which all
89 const Graphics3D& share_context,
graphics_3d.cc 35 const Graphics3D& share_context,
40 share_context.pp_resource(),
  /external/chromium_org/content/common/gpu/client/
webgraphicscontext3d_command_buffer_impl.cc 113 WebGraphicsContext3DCommandBufferImpl* share_context)
124 if (share_context) {
126 share_group_ = share_context->share_group_;
180 bool onscreen, WebGraphicsContext3DCommandBufferImpl* share_context) {
186 if (share_context) {
187 share_group_command_buffer = share_context->command_buffer_.get();
250 WebGraphicsContext3DCommandBufferImpl* share_context = NULL; local
253 share_context = share_group_->GetAnyContextLocked();
255 if (!InitializeCommandBuffer(onscreen, share_context)) {
260 if (share_context)
    [all...]
webgraphicscontext3d_command_buffer_impl.h 112 WebGraphicsContext3DCommandBufferImpl* share_context);
139 WebGraphicsContext3DCommandBufferImpl* share_context);
196 WebGraphicsContext3DCommandBufferImpl* share_context);
  /external/chromium_org/gpu/command_buffer/client/
gl_in_process_context.h 60 // Only one of |share_context| and |use_global_share_group| can be used at
68 GLInProcessContext* share_context,
gl_in_process_context.cc 58 GLInProcessContext* share_context,
126 GLInProcessContext* share_context,
132 DCHECK(!use_global_share_group || !share_context);
218 } else if (share_context) {
220 static_cast<GLInProcessContextImpl*>(share_context);
321 GLInProcessContext* share_context,
325 DCHECK(!use_global_share_group || !share_context);
336 share_context,
  /external/chromium_org/ppapi/c/
ppb_graphics_3d.h 100 * @param[in] share_context The 3D context with which the created context
101 * would share resources. If <code>share_context</code> is not 0, then all
104 * by <code>share_context<code>, all other contexts <code>share_context</code>
151 PP_Resource share_context,
  /external/chromium_org/ppapi/api/
ppb_graphics_3d.idl 90 * @param[in] share_context The 3D context with which the created context
91 * would share resources. If <code>share_context</code> is not 0, then all
94 * by <code>share_context<code>, all other contexts <code>share_context</code>
142 [in] PP_Resource share_context,
  /external/chromium_org/third_party/mesa/src/src/glx/
create_context.c 38 GLXContext share_context, Bool direct,
43 struct glx_context *const share = (struct glx_context *) share_context;
  /external/mesa3d/src/glx/
create_context.c 38 GLXContext share_context, Bool direct,
43 struct glx_context *const share = (struct glx_context *) share_context;
  /external/chromium_org/ppapi/proxy/
ppb_graphics_3d_proxy.h 68 PP_Resource share_context,
78 HostResource share_context,
ppb_graphics_3d_proxy.cc 130 PP_Resource share_context,
138 if (share_context != 0) {
139 EnterResourceNoLock<PPB_Graphics3D_API> enter(share_context, true);
206 HostResource share_context,
220 share_context.host_resource(),
  /external/chromium_org/ppapi/thunk/
ppb_graphics_3d_thunk.cc 31 PP_Resource share_context,
38 share_context,
  /external/chromium_org/ui/surface/
accelerated_surface_mac.h 39 // Set up internal buffers. |share_context|, if non-NULL, is a context
49 // |share_context| is non-NULL, then on platforms supporting dual GPUs,
52 bool Initialize(gfx::GLContext* share_context,
accelerated_surface_mac.cc 29 gfx::GLContext* share_context,
50 share_context ? share_context->share_group() : NULL;
  /external/chromium_org/ui/gl/
gl_context_cgl.cc 84 GLContextCGL* share_context = share_group() ? local
110 share_context ?
111 static_cast<CGLContextObj>(share_context->GetHandle()) : NULL,
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLImpl.java 53 public EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list) {
54 long eglContextId = _eglCreateContext(display, config, share_context, attrib_list);
148 private native long _eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list);