diff options
author | Brian Paul <[email protected]> | 2000-09-05 20:17:37 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-09-05 20:17:37 +0000 |
commit | 3a71d05e538c24b23fbe356295e2096f8bb692d1 (patch) | |
tree | b8e33a99e3d7f8f4253d8ebd349db2a27075f2c3 /src/mesa/glapi/glapi.h | |
parent | dca39e89119b8c2c35831ee745b2ff7da3bf11ba (diff) |
added tracing facility from Loki
Diffstat (limited to 'src/mesa/glapi/glapi.h')
-rw-r--r-- | src/mesa/glapi/glapi.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mesa/glapi/glapi.h b/src/mesa/glapi/glapi.h index 2b545b48887..2a56c77cec0 100644 --- a/src/mesa/glapi/glapi.h +++ b/src/mesa/glapi/glapi.h @@ -1,8 +1,8 @@ -/* $Id: glapi.h,v 1.14 2000/01/28 20:17:42 brianp Exp $ */ +/* $Id: glapi.h,v 1.15 2000/09/05 20:17:37 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.3 + * Version: 3.5 * * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. * @@ -59,6 +59,12 @@ extern struct _glapi_table * _glapi_get_dispatch(void); +#if defined(TRACE) +extern struct _glapi_table * +_glapi_get_true_dispatch(void); +#endif + + extern GLuint _glapi_get_dispatch_table_size(void); |