diff options
author | Brian Paul <[email protected]> | 2000-09-15 19:45:40 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-09-15 19:45:40 +0000 |
commit | 1ff933b4522b7be7d08e015f9e792eea5b53cd5f (patch) | |
tree | 7651c979417d3c7bc0952b4b0ae84b9d2c16661a /src/mesa/main/context.c | |
parent | 98b3dd40f7969ace61654a5b57366db923502dcb (diff) |
added GL_MESA_trace support
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index e94e399a88f..f0ecfbf014e 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.86 2000/09/14 23:13:23 brianp Exp $ */ +/* $Id: context.c,v 1.87 2000/09/15 19:45:40 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -74,7 +74,7 @@ #endif -#if defined(TRACE) +#if defined(GL_MESA_TRACE) #include "Trace/tr_context.h" #include "Trace/tr_wrapper.h" #endif @@ -1492,7 +1492,7 @@ _mesa_initialize_context( GLcontext *ctx, _mesa_init_dlist_table(ctx->Save, dispatchSize); ctx->CurrentDispatch = ctx->Exec; -#if defined(TRACE) +#if defined(GL_MESA_TRACE) ctx->TraceCtx = CALLOC( sizeof(trace_context_t) ); #if 0 /* Brian: do you want to have CreateContext fail here, |