Searched refs:_glapi_table (Results 1 - 25 of 124) sorted by relevance

12345

/xsrc/external/mit/MesaLib.old/dist/src/mesa/vbo/
H A Dvbo_noop.h31 struct _glapi_table;
37 _mesa_using_noop_vtxfmt(const struct _glapi_table *dispatch);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dapi_exec.h33 struct _glapi_table;
36 extern struct _glapi_table *
45 extern struct _glapi_table *
H A Dapi_arrayelt.h33 struct _glapi_table;
39 _mesa_install_arrayelt_vtxfmt(struct _glapi_table *disp,
/xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/
H A Dglapi.c38 const struct _glapi_table *_glapi_Dispatch;
61 _glapi_set_dispatch(struct _glapi_table *dispatch)
63 u_current_set_table((const struct _glapi_table *) dispatch);
H A Dglapi.h86 struct _glapi_table;
91 _GLAPI_EXPORT extern __thread struct _glapi_table * _glapi_tls_Dispatch
97 _GLAPI_EXPORT extern const struct _glapi_table *_glapi_Dispatch;
105 _GLAPI_EXPORT extern struct _glapi_table *_glapi_Dispatch;
134 _glapi_set_dispatch(struct _glapi_table *dispatch);
137 _GLAPI_EXPORT struct _glapi_table *
162 _GLAPI_EXPORT struct _glapi_table *
166 _glapi_table_patch(struct _glapi_table *, const char *name, void *wrapper);
174 _GLAPI_EXPORT struct _glapi_table *
/xsrc/external/mit/MesaLib/dist/src/mapi/glapi/
H A Dglapi.c38 const struct _glapi_table *_glapi_Dispatch;
61 _glapi_set_dispatch(struct _glapi_table *dispatch)
63 u_current_set_table((const struct _glapi_table *) dispatch);
H A Dglapi.h77 struct _glapi_table;
83 extern __declspec(thread) struct _glapi_table * _glapi_tls_Dispatch;
86 _GLAPI_EXPORT extern __THREAD_INITIAL_EXEC struct _glapi_table * _glapi_tls_Dispatch;
91 _GLAPI_EXPORT extern const struct _glapi_table *_glapi_Dispatch;
99 _GLAPI_EXPORT extern struct _glapi_table *_glapi_Dispatch;
128 _glapi_set_dispatch(struct _glapi_table *dispatch);
131 _GLAPI_EXPORT struct _glapi_table *
156 _GLAPI_EXPORT struct _glapi_table *
160 _glapi_table_patch(struct _glapi_table *, const char *name, void *wrapper);
168 _GLAPI_EXPORT struct _glapi_table *
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dapi_exec.h33 struct _glapi_table;
36 extern struct _glapi_table *
45 extern struct _glapi_table *
H A Dapi_arrayelt.h33 struct _glapi_table;
39 _mesa_install_arrayelt_vtxfmt(struct _glapi_table *disp,
/xsrc/external/mit/MesaLib/dist/src/mesa/vbo/
H A Dvbo_noop.h31 struct _glapi_table;
37 _mesa_using_noop_vtxfmt(const struct _glapi_table *dispatch);
/xsrc/external/mit/MesaLib.old/dist/src/glx/
H A Dindirect_init.h43 extern struct _glapi_table *__glXNewIndirectAPI(void);
/xsrc/external/mit/MesaLib/dist/src/glx/
H A Dindirect_init.h43 extern struct _glapi_table *__glXNewIndirectAPI(void);
/xsrc/external/mit/MesaLib.old/dist/src/mapi/
H A Dtable.h40 struct _glapi_table;
55 static inline const struct _glapi_table *
58 return (const struct _glapi_table *) table_noop_array;
65 table_set_func(struct _glapi_table *tbl, int slot, mapi_func func)
75 table_get_func(const struct _glapi_table *tbl, int slot)
H A Du_current.h28 struct _glapi_table;
32 extern __thread struct _glapi_table *u_current_table
40 extern struct _glapi_table *u_current_table;
54 u_current_set_table(const struct _glapi_table *tbl);
56 struct _glapi_table *
65 static inline const struct _glapi_table *
H A Du_current.c28 * The dispatch table (struct _glapi_table) is basically just a list
102 __thread struct _glapi_table *u_current_table
107 = (struct _glapi_table *) table_noop_array;
115 struct _glapi_table *u_current_table =
116 (struct _glapi_table *) table_noop_array;
266 u_current_set_table(const struct _glapi_table *tbl)
273 tbl = (const struct _glapi_table *) table_noop_array;
276 u_current_table = (struct _glapi_table *) tbl;
286 struct _glapi_table *
291 return (likely(u_current_table) ? u_current_table : (struct _glapi_table *) table_noop_arra
[all...]
/xsrc/external/mit/MesaLib/dist/src/mapi/
H A Dtable.h40 struct _glapi_table;
55 static inline const struct _glapi_table *
58 return (const struct _glapi_table *) table_noop_array;
65 table_set_func(struct _glapi_table *tbl, int slot, mapi_func func)
75 table_get_func(const struct _glapi_table *tbl, int slot)
H A Du_current.h28 struct _glapi_table;
32 extern __THREAD_INITIAL_EXEC struct _glapi_table *u_current_table;
37 extern struct _glapi_table *u_current_table;
51 u_current_set_table(const struct _glapi_table *tbl);
53 _GLAPI_EXPORT struct _glapi_table *
H A Du_current.c28 * The dispatch table (struct _glapi_table) is basically just a list
103 __THREAD_INITIAL_EXEC struct _glapi_table *u_current_table
107 = (struct _glapi_table *) table_noop_array;
114 struct _glapi_table *u_current_table =
115 (struct _glapi_table *) table_noop_array;
234 u_current_set_table(const struct _glapi_table *tbl)
241 tbl = (const struct _glapi_table *) table_noop_array;
244 u_current_table = (struct _glapi_table *) tbl;
254 struct _glapi_table *
259 return (likely(u_current_table) ? u_current_table : (struct _glapi_table *) table_noop_arra
[all...]
/xsrc/external/mit/xorg-server.old/dist/glx/
H A Dglapi.h54 struct _glapi_table;
84 const extern struct _glapi_table *_glapi_Dispatch;
94 extern struct _glapi_table *_glapi_Dispatch;
119 _glapi_set_dispatch(struct _glapi_table *dispatch);
121 extern struct _glapi_table *
125 _glapi_begin_dispatch_override(struct _glapi_table *override);
130 struct _glapi_table *
143 extern struct _glapi_table *
/xsrc/external/mit/MesaLib/src/mesa/main/
H A Ddispatch.h2977 static inline _glptr_NewList GET_NewList(struct _glapi_table *disp) {
2981 static inline void SET_NewList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
2988 static inline _glptr_EndList GET_EndList(struct _glapi_table *disp) {
2992 static inline void SET_EndList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
2999 static inline _glptr_CallList GET_CallList(struct _glapi_table *disp) {
3003 static inline void SET_CallList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
3010 static inline _glptr_CallLists GET_CallLists(struct _glapi_table *disp) {
3014 static inline void SET_CallLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, const GLvoid *)) {
3021 static inline _glptr_DeleteLists GET_DeleteLists(struct _glapi_table *disp) {
3025 static inline void SET_DeleteLists(struct _glapi_table *dis
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/hgl/
H A DGLDispatcher.cpp31 const struct _glapi_table* dispatch; \
36 const struct _glapi_table* dispatch; \
61 BGLDispatcher::SetTable(struct _glapi_table* table)
/xsrc/external/mit/MesaLib.old/dist/src/glx/apple/
H A Dapple_glapi.c49 struct _glapi_table * __ogl_framework_api = NULL;
50 struct _glapi_table * __applegl_api = NULL;
59 __applegl_api = malloc(sizeof(struct _glapi_table));
61 memcpy(__applegl_api, __ogl_framework_api, sizeof(struct _glapi_table));
H A Dapple_xgl_api_viewport.c36 extern struct _glapi_table * __ogl_framework_api;
/xsrc/external/mit/MesaLib/dist/src/glx/apple/
H A Dapple_glapi.c49 struct _glapi_table * __ogl_framework_api = NULL;
50 struct _glapi_table * __applegl_api = NULL;
59 __applegl_api = malloc(sizeof(struct _glapi_table));
61 memcpy(__applegl_api, __ogl_framework_api, sizeof(struct _glapi_table));
/xsrc/external/mit/MesaLib.old/src/mesa/main/
H A Ddispatch.h2504 static inline _glptr_NewList GET_NewList(struct _glapi_table *disp) {
2508 static inline void SET_NewList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLenum)) {
2515 static inline _glptr_EndList GET_EndList(struct _glapi_table *disp) {
2519 static inline void SET_EndList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(void)) {
2526 static inline _glptr_CallList GET_CallList(struct _glapi_table *disp) {
2530 static inline void SET_CallList(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint)) {
2537 static inline _glptr_CallLists GET_CallLists(struct _glapi_table *disp) {
2541 static inline void SET_CallLists(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLsizei, GLenum, const GLvoid *)) {
2548 static inline _glptr_DeleteLists GET_DeleteLists(struct _glapi_table *disp) {
2552 static inline void SET_DeleteLists(struct _glapi_table *dis
[all...]

Completed in 98 milliseconds

12345