Searched refs:glx_context (Results 1 - 25 of 73) sorted by relevance

123

/external/chromium_org/third_party/mesa/src/src/glx/
H A Dapplegl_glx.c46 applegl_destroy_context(struct glx_context *gc)
52 applegl_bind_context(struct glx_context *gc, struct glx_context *old,
70 applegl_unbind_context(struct glx_context *gc, struct glx_context *new)
93 applegl_wait_gl(struct glx_context *gc)
99 applegl_wait_x(struct glx_context *gc)
123 struct glx_context *
126 struct glx_context *shareList, int renderType)
128 struct glx_context *g
[all...]
H A Dglxclient.h70 struct glx_context;
76 extern void DRI_glXUseXFont(struct glx_context *ctx,
105 struct glx_context *(*createContext)(struct glx_screen *psc,
107 struct glx_context *shareList,
214 void (*destroy)(struct glx_context *ctx);
215 int (*bind)(struct glx_context *context, struct glx_context *old,
217 void (*unbind)(struct glx_context *context, struct glx_context *new_ctx);
218 void (*wait_gl)(struct glx_context *ct
233 struct glx_context struct
[all...]
H A Ddri_common.h57 driFetchDrawable(struct glx_context *gc, GLXDrawable glxDrawable);
60 driReleaseDrawables(struct glx_context *gc);
H A Dglxcurrent.c63 struct glx_context dummyContext = {
93 __glXSetCurrentContext(struct glx_context * c)
128 __glXSetCurrentContext(struct glx_context * c)
134 _X_HIDDEN struct glx_context *
142 return (v == NULL) ? &dummyContext : (struct glx_context *) v;
154 _X_HIDDEN struct glx_context *__glXcurrentContext = &dummyContext;
172 struct glx_context *cx = __glXGetCurrentContext();
185 struct glx_context *gc = __glXGetCurrentContext();
213 struct glx_context *gc = (struct glx_context *) gc_use
[all...]
H A Dcreate_context.c43 struct glx_context *const share = (struct glx_context *) share_context;
44 struct glx_context *gc = NULL;
H A Dclientattrib.c42 struct glx_context *gc = __glXGetCurrentContext();
72 struct glx_context *gc = __glXGetCurrentContext();
100 struct glx_context *gc = __glXGetCurrentContext();
130 __glFreeAttributeState(struct glx_context * gc)
H A Dindirect_glx.c44 indirect_destroy_context(struct glx_context *gc)
128 indirect_bind_context(struct glx_context *gc, struct glx_context *old,
162 indirect_unbind_context(struct glx_context *gc, struct glx_context *new)
183 indirect_wait_gl(struct glx_context *gc)
202 indirect_wait_x(struct glx_context *gc)
220 indirect_use_x_font(struct glx_context *gc,
249 struct glx_context *gc = __glXGetCurrentContext();
300 struct glx_context *g
[all...]
/external/mesa3d/src/glx/
H A Dapplegl_glx.c46 applegl_destroy_context(struct glx_context *gc)
52 applegl_bind_context(struct glx_context *gc, struct glx_context *old,
70 applegl_unbind_context(struct glx_context *gc, struct glx_context *new)
93 applegl_wait_gl(struct glx_context *gc)
99 applegl_wait_x(struct glx_context *gc)
123 struct glx_context *
126 struct glx_context *shareList, int renderType)
128 struct glx_context *g
[all...]
H A Dglxclient.h70 struct glx_context;
76 extern void DRI_glXUseXFont(struct glx_context *ctx,
105 struct glx_context *(*createContext)(struct glx_screen *psc,
107 struct glx_context *shareList,
214 void (*destroy)(struct glx_context *ctx);
215 int (*bind)(struct glx_context *context, struct glx_context *old,
217 void (*unbind)(struct glx_context *context, struct glx_context *new_ctx);
218 void (*wait_gl)(struct glx_context *ct
233 struct glx_context struct
[all...]
H A Ddri_common.h57 driFetchDrawable(struct glx_context *gc, GLXDrawable glxDrawable);
60 driReleaseDrawables(struct glx_context *gc);
H A Dglxcurrent.c63 struct glx_context dummyContext = {
93 __glXSetCurrentContext(struct glx_context * c)
128 __glXSetCurrentContext(struct glx_context * c)
134 _X_HIDDEN struct glx_context *
142 return (v == NULL) ? &dummyContext : (struct glx_context *) v;
154 _X_HIDDEN struct glx_context *__glXcurrentContext = &dummyContext;
172 struct glx_context *cx = __glXGetCurrentContext();
185 struct glx_context *gc = __glXGetCurrentContext();
213 struct glx_context *gc = (struct glx_context *) gc_use
[all...]
H A Dcreate_context.c43 struct glx_context *const share = (struct glx_context *) share_context;
44 struct glx_context *gc = NULL;
H A Dclientattrib.c42 struct glx_context *gc = __glXGetCurrentContext();
72 struct glx_context *gc = __glXGetCurrentContext();
100 struct glx_context *gc = __glXGetCurrentContext();
130 __glFreeAttributeState(struct glx_context * gc)
H A Dindirect_glx.c44 indirect_destroy_context(struct glx_context *gc)
128 indirect_bind_context(struct glx_context *gc, struct glx_context *old,
162 indirect_unbind_context(struct glx_context *gc, struct glx_context *new)
183 indirect_wait_gl(struct glx_context *gc)
202 indirect_wait_x(struct glx_context *gc)
220 indirect_use_x_font(struct glx_context *gc,
249 struct glx_context *gc = __glXGetCurrentContext();
300 struct glx_context *g
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/tests/
H A Dfake_glx_screen.cpp49 extern "C" struct glx_context *
51 struct glx_context *shareList, int renderType)
H A Dfake_glx_screen.h69 class fake_glx_context : public glx_context {
91 static glx_context *create_attribs(struct glx_screen *psc,
93 struct glx_context *shareList,
112 static void destroy(struct glx_context *gc)
126 static glx_context *create(struct glx_screen *psc, struct glx_config *mode,
127 struct glx_context *shareList, int renderType)
135 static glx_context *create_attribs(struct glx_screen *psc,
137 struct glx_context *shareList,
H A Dcreate_context_unittest.cpp44 glx_context_init(struct glx_context *gc,
235 struct glx_context *glx_ctx = (struct glx_context *) share;
378 struct glx_context *glx_ctx = (struct glx_context *) ctx;
396 struct glx_context *share = (struct glx_context *) first;
397 struct glx_context *ctx = (struct glx_context *) second;
409 struct glx_context *g
[all...]
/external/mesa3d/src/glx/tests/
H A Dfake_glx_screen.cpp49 extern "C" struct glx_context *
51 struct glx_context *shareList, int renderType)
H A Dfake_glx_screen.h69 class fake_glx_context : public glx_context {
91 static glx_context *create_attribs(struct glx_screen *psc,
93 struct glx_context *shareList,
112 static void destroy(struct glx_context *gc)
126 static glx_context *create(struct glx_screen *psc, struct glx_config *mode,
127 struct glx_context *shareList, int renderType)
135 static glx_context *create_attribs(struct glx_screen *psc,
137 struct glx_context *shareList,
H A Dcreate_context_unittest.cpp44 glx_context_init(struct glx_context *gc,
235 struct glx_context *glx_ctx = (struct glx_context *) share;
378 struct glx_context *glx_ctx = (struct glx_context *) ctx;
396 struct glx_context *share = (struct glx_context *) first;
397 struct glx_context *ctx = (struct glx_context *) second;
409 struct glx_context *g
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_xgl_api_viewport.c40 struct glx_context *gc = __glXGetCurrentContext();
H A Dapple_xgl_api_stereo.c54 struct glx_context * gc = __glXGetCurrentContext();
89 struct glx_context * gc = __glXGetCurrentContext();
/external/mesa3d/src/glx/apple/
H A Dapple_xgl_api_viewport.c40 struct glx_context *gc = __glXGetCurrentContext();
H A Dapple_xgl_api_stereo.c54 struct glx_context * gc = __glXGetCurrentContext();
89 struct glx_context * gc = __glXGetCurrentContext();
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11gl_c.h35 GLXContext glx_context; /* Current GL context */ member in struct:SDL_PrivateGLData
83 #define glx_context (this->gl_data->glx_context) macro

Completed in 114 milliseconds

123