diff options
author | George Sapountzis <[email protected]> | 2010-03-01 04:44:02 +0200 |
---|---|---|
committer | George Sapountzis <[email protected]> | 2010-03-01 20:54:20 +0200 |
commit | d41ab94d35cb47effbd2582289298be4f13c50e4 (patch) | |
tree | 01210f712026af2a1daf5cf502df33b2b154f440 /src/mesa/glapi/glapi.h | |
parent | 7b454b00a4423937bd83ecff2d61ff08e6504707 (diff) |
glapi.c: misc coscmetic for FreeTSD
- move out of of the dispatch/context block to after corresponding init functions
- use more consistent naming with corresponding init functions
- XXX use _glthread_InitTSD() vs (void)_glthread_GetTSD() in _glapi_check_multithread() XXX
Diffstat (limited to 'src/mesa/glapi/glapi.h')
-rw-r--r-- | src/mesa/glapi/glapi.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/glapi/glapi.h b/src/mesa/glapi/glapi.h index 0abec5df769..2eae6d5c438 100644 --- a/src/mesa/glapi/glapi.h +++ b/src/mesa/glapi/glapi.h @@ -122,6 +122,14 @@ extern void *_glapi_Context; **/ extern void +_glapi_init_multithread(void); + + +extern void +_glapi_destroy_multithread(void); + + +extern void _glapi_check_multithread(void); |