diff options
author | Brian Paul <[email protected]> | 2001-03-28 17:19:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-28 17:19:58 +0000 |
commit | 3c257e187bded9417d00471286d86ea4e483a98a (patch) | |
tree | a143a2de409689910ae0db8818aae4b09fdb318b /src/mesa/glapi/glapi.h | |
parent | fb8af6fc9780e6238c309487d265822fc7052a0d (diff) |
New mechanism for thread-safe GL API dispatch. C-based dispatch is faster.
Folded glapinoop.c code into glapi.c.
Added code to glapitemp.h to fill in dispatch tables.
Updated Makefiles.
Diffstat (limited to 'src/mesa/glapi/glapi.h')
-rw-r--r-- | src/mesa/glapi/glapi.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/glapi/glapi.h b/src/mesa/glapi/glapi.h index 7916292883a..3b022e436e1 100644 --- a/src/mesa/glapi/glapi.h +++ b/src/mesa/glapi/glapi.h @@ -1,4 +1,4 @@ -/* $Id: glapi.h,v 1.18 2001/01/23 23:35:47 brianp Exp $ */ +/* $Id: glapi.h,v 1.19 2001/03/28 17:20:20 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -40,6 +40,10 @@ extern struct _glapi_table *_glapi_Dispatch; extern void +_glapi_noop_enable_warnings(GLboolean enable); + + +extern void _glapi_check_multithread(void); |