diff options
author | Brian Paul <[email protected]> | 2014-03-01 10:40:24 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-03-03 13:08:59 -0700 |
commit | 94dc91d7ecdec4aadfbbe307dc598bb163af0c74 (patch) | |
tree | 32b36b76653811efa8137fc490b42716ece216ea /src | |
parent | bc76e9f28d089f6e1689d8efc41f2a89030c44f6 (diff) |
mesa: remove unused glthread/TSD macros
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mapi/glapi/glthread.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mapi/glapi/glthread.h b/src/mapi/glapi/glthread.h index ddb49731cb7..bed2c02f87f 100644 --- a/src/mapi/glapi/glthread.h +++ b/src/mapi/glapi/glthread.h @@ -7,13 +7,6 @@ extern "C" { #endif -#define _glthread_InitTSD(tsd) u_tsd_init(tsd); -#define _glthread_DestroyTSD(tsd) u_tsd_destroy(tsd); -#define _glthread_GetTSD(tsd) u_tsd_get(tsd); -#define _glthread_SetTSD(tsd, ptr) u_tsd_set(tsd, ptr); - -typedef struct u_tsd _glthread_TSD; - #ifdef __cplusplus } #endif |