diff options
author | Jouk Jansen <[email protected]> | 2000-11-27 09:05:52 +0000 |
---|---|---|
committer | Jouk Jansen <[email protected]> | 2000-11-27 09:05:52 +0000 |
commit | 33b2dcf0dad710ddfb92bf63ca69fa4f67684518 (patch) | |
tree | 639ae3db3239c2fe58a524e50ab6e5a2593bed5d /src/mesa/tnl/t_context.c | |
parent | 68656667b2f63c285ccd75fb16a17a8a04a9f552 (diff) |
Modified Files:
Mesa/src/tnl/t_context.c Mesa/src/tnl/t_debug.c
Mesa/src/tnl/t_pipeline.c
Some updates to silence warnings on my VMS-machine
----------------------------------------------------------------------
Diffstat (limited to 'src/mesa/tnl/t_context.c')
-rw-r--r-- | src/mesa/tnl/t_context.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_context.c b/src/mesa/tnl/t_context.c index b8b608e356c..d27a48b2960 100644 --- a/src/mesa/tnl/t_context.c +++ b/src/mesa/tnl/t_context.c @@ -219,8 +219,10 @@ _tnl_wakeup_exec( GLcontext *ctx ) { TNLcontext *tnl = TNL_CONTEXT(ctx); +#ifndef VMS fprintf(stderr, "%s\n", __FUNCTION__); - +#endif + install_driver_callbacks(ctx); /* Hook our functions into exec and compile dispatch tables. @@ -252,8 +254,10 @@ _tnl_wakeup_save_exec( GLcontext *ctx ) { TNLcontext *tnl = TNL_CONTEXT(ctx); +#ifndef VMS fprintf(stderr, "%s\n", __FUNCTION__); - +#endif + _tnl_wakeup_exec( ctx ); _mesa_install_save_vtxfmt( ctx, &tnl->vtxfmt ); ctx->Save->EvalMesh1 = _mesa_save_EvalMesh1; /* fixme */ |