diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2001-01-23 23:35:47 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2001-01-23 23:35:47 +0000 |
commit | ab0c886a6c0dd38ac6168c2a239720a761e6578f (patch) | |
tree | b1ba28e6f370146e36f5a5db0526ba7c416c1d7d /src/mesa/glapi/glapi.h | |
parent | f2718b0966f54049056e16e7cca08718341557b2 (diff) |
added dispatch override mechanism, used by trace extension
Diffstat (limited to 'src/mesa/glapi/glapi.h')
-rw-r--r-- | src/mesa/glapi/glapi.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/mesa/glapi/glapi.h b/src/mesa/glapi/glapi.h index f55b074053..7916292883 100644 --- a/src/mesa/glapi/glapi.h +++ b/src/mesa/glapi/glapi.h @@ -1,10 +1,10 @@ -/* $Id: glapi.h,v 1.17 2000/09/26 15:27:23 brianp Exp $ */ +/* $Id: glapi.h,v 1.18 2001/01/23 23:35:47 brianp Exp $ */ /* * Mesa 3-D graphics library * Version: 3.5 * - * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -59,10 +59,16 @@ extern struct _glapi_table * _glapi_get_dispatch(void); -#if defined(MESA_TRACE) -extern struct _glapi_table * -_glapi_get_true_dispatch(void); -#endif +extern int +_glapi_begin_dispatch_override(struct _glapi_table *override); + + +extern void +_glapi_end_dispatch_override(int layer); + + +struct _glapi_table * +_glapi_get_override_dispatch(int layer); extern GLuint |