diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-09-26 15:27:20 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-09-26 15:27:20 +0000 |
commit | 3b18a36f210da9d66acd1228d24948cd77c2e81e (patch) | |
tree | dd076b43db8581367121ca67e4d8a3e5b5f3e7fe /src/mesa/main/context.c | |
parent | 63c113a31be2de3a53f38aab622565308d9724b9 (diff) |
Replaced preprocessor symbol GL_MESA_TRACE with MESA_TRACE.
Changed src/Makefile.X11 to compile Trace sources like other drivers.
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 71cbc6addc..551327254f 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.88 2000/09/17 21:56:07 brianp Exp $ */ +/* $Id: context.c,v 1.89 2000/09/26 15:27:22 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -74,7 +74,7 @@ #endif -#if defined(GL_MESA_TRACE) +#if defined(MESA_TRACE) #include "Trace/tr_context.h" #include "Trace/tr_wrapper.h" #endif @@ -1491,7 +1491,7 @@ _mesa_initialize_context( GLcontext *ctx, _mesa_init_dlist_table(ctx->Save, dispatchSize); ctx->CurrentDispatch = ctx->Exec; -#if defined(GL_MESA_TRACE) +#if defined(MESA_TRACE) ctx->TraceCtx = CALLOC( sizeof(trace_context_t) ); #if 0 /* Brian: do you want to have CreateContext fail here, |