Home
last modified time | relevance | path

Searched refs:_glapi_proc (Results 1 – 15 of 15) sorted by relevance

/external/mesa3d/src/glx/tests/
Dindirect_api.cpp713 _glapi_proc *table;
719 this->table = (_glapi_proc *) __glXNewIndirectAPI(); in SetUp()
760 EXPECT_EQ((_glapi_proc) __indirect_glAccum, table[_gloffset_Accum]); in TEST_F()
761 EXPECT_EQ((_glapi_proc) __indirect_glAlphaFunc, table[_gloffset_AlphaFunc]); in TEST_F()
762 EXPECT_EQ((_glapi_proc) __indirect_glBegin, table[_gloffset_Begin]); in TEST_F()
763 EXPECT_EQ((_glapi_proc) __indirect_glBitmap, table[_gloffset_Bitmap]); in TEST_F()
764 EXPECT_EQ((_glapi_proc) __indirect_glBlendFunc, table[_gloffset_BlendFunc]); in TEST_F()
765 EXPECT_EQ((_glapi_proc) __indirect_glCallList, table[_gloffset_CallList]); in TEST_F()
766 EXPECT_EQ((_glapi_proc) __indirect_glCallLists, table[_gloffset_CallLists]); in TEST_F()
767 EXPECT_EQ((_glapi_proc) __indirect_glClear, table[_gloffset_Clear]); in TEST_F()
[all …]
/external/mesa3d/src/mapi/glapi/
Dglapi_entrypoint.c53 _glapi_proc
56 return (_glapi_proc) (gl_dispatch_functions_start in get_entrypoint_address()
94 _glapi_proc
108 fill_in_entrypoint_offset( (_glapi_proc) code, functionOffset ); in generate_entrypoint()
111 return (_glapi_proc) code; in generate_entrypoint()
120 fill_in_entrypoint_offset(_glapi_proc entrypoint, unsigned int offset) in fill_in_entrypoint_offset()
267 _glapi_proc
295 return (_glapi_proc) code; in generate_entrypoint()
301 fill_in_entrypoint_offset(_glapi_proc entrypoint, GLuint offset) in fill_in_entrypoint_offset()
319 _glapi_proc
[all …]
Dglapi_nop.c58 _glapi_set_warning_func(_glapi_proc func) in _glapi_set_warning_func()
115 #define TABLE_ENTRY(name) (_glapi_proc) NoOp##name
126 struct _glapi_table *table = malloc(num_entries * sizeof(_glapi_proc)); in _glapi_new_nop_table()
129 num_entries * sizeof(_glapi_proc)); in _glapi_new_nop_table()
Dglapi_priv.h62 extern _glapi_proc
67 fill_in_entrypoint_offset(_glapi_proc entrypoint, unsigned int offset);
70 extern _glapi_proc
Dglapi_getproc.c95 static _glapi_proc
180 _glapi_proc dispatch_stub;
213 static _glapi_proc
271 _glapi_proc entrypoint = NULL; in add_function_name()
506 _glapi_proc
509 _glapi_proc func; in _glapi_get_proc_address()
Dglapi.h82 typedef void (*_glapi_proc)(void); typedef
153 _GLAPI_EXPORT _glapi_proc
188 _glapi_set_warning_func(_glapi_proc func);
/external/mesa3d/src/hgl/
DGLDispatcher.h40 const _glapi_proc operator[](const char* functionName);
43 const _glapi_proc AddressOf(const char* functionName);
77 inline const _glapi_proc
91 inline const _glapi_proc
/external/mesa3d/src/mesa/main/
Drobustness.c71 ctx->ContextLost = malloc(numEntries * sizeof(_glapi_proc)); in _mesa_set_context_lost_dispatch()
75 _glapi_proc *entry = (_glapi_proc *) ctx->ContextLost; in _mesa_set_context_lost_dispatch()
78 entry[i] = (_glapi_proc) context_lost_nop_handler; in _mesa_set_context_lost_dispatch()
Dcontext.c978 table = malloc(numEntries * sizeof(_glapi_proc)); in _mesa_new_nop_table()
980 _glapi_proc *entry = (_glapi_proc *) table; in _mesa_new_nop_table()
983 entry[i] = (_glapi_proc) generic_nop; in _mesa_new_nop_table()
Ddlist.c9594 memcpy(table, ctx->Exec, numEntries * sizeof(_glapi_proc)); in _mesa_initialize_save_table()
/external/mesa3d/src/mesa/main/tests/
Ddispatch_sanity.cpp88 _glapi_proc *nop_table;
102 nop_table = (_glapi_proc *) _mesa_new_nop_table(size); in SetUp()
133 const _glapi_proc *nop_table) in validate_functions()
135 _glapi_proc *table = (_glapi_proc *) ctx->Exec; in validate_functions()
167 validate_nops(struct gl_context *ctx, const _glapi_proc *nop_table) in validate_nops()
169 _glapi_proc *table = (_glapi_proc *) ctx->Exec; in validate_nops()
/external/mesa3d/src/mapi/
Dmapi_glapi.c208 _glapi_proc
212 return (stub) ? (_glapi_proc) stub_get_addr(stub) : NULL; in _glapi_get_proc_address()
264 _glapi_set_warning_func(_glapi_proc func) in _glapi_set_warning_func()
/external/mesa3d/src/glx/
Dsinglepix.c118 const _glapi_proc *const table = (_glapi_proc *) GET_DISPATCH(); in gl_dispatch_stub_GetSeparableFilterEXT()
Dsingle2.c918 const _glapi_proc *const table = (_glapi_proc *) GET_DISPATCH(); in glAreTexturesResidentEXT()
/external/mesa3d/prebuilt-intermediates/main/
Ddispatch.h46 (offset >= 0) ? (((_glapi_proc *)(disp))[offset]) : NULL
55 ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \