diff options
author | Brian Paul <[email protected]> | 2000-01-28 20:17:42 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-01-28 20:17:42 +0000 |
commit | f9b97d95f9bf9286107586d6afdadae74bb94d36 (patch) | |
tree | 4fa4c2845f5944c4bf8d41981ea297c736f2e4f2 /src/mesa/glapi/glapi.h | |
parent | 9f94399cf331b5b81ef5dee86b0ef02d131337c6 (diff) |
renamed _glapi_CurrentContext to _glapi_Context
Diffstat (limited to 'src/mesa/glapi/glapi.h')
-rw-r--r-- | src/mesa/glapi/glapi.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/glapi/glapi.h b/src/mesa/glapi/glapi.h index 93631cac283..2b545b48887 100644 --- a/src/mesa/glapi/glapi.h +++ b/src/mesa/glapi/glapi.h @@ -1,4 +1,4 @@ -/* $Id: glapi.h,v 1.13 2000/01/17 19:28:43 brianp Exp $ */ +/* $Id: glapi.h,v 1.14 2000/01/28 20:17:42 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -34,7 +34,7 @@ struct _glapi_table; -extern void *_glapi_CurrentContext; +extern void *_glapi_Context; extern struct _glapi_table *_glapi_Dispatch; @@ -44,11 +44,11 @@ _glapi_check_multithread(void); extern void -_glapi_set_current_context(void *context); +_glapi_set_context(void *context); extern void * -_glapi_get_current_context(void); +_glapi_get_context(void); extern void |