diff options
Diffstat (limited to 'src/mesa/drivers/x11')
-rw-r--r-- | src/mesa/drivers/x11/xm_dd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/drivers/x11/xm_dd.c b/src/mesa/drivers/x11/xm_dd.c index 548ebb0c543..dbb01f343ef 100644 --- a/src/mesa/drivers/x11/xm_dd.c +++ b/src/mesa/drivers/x11/xm_dd.c @@ -1,4 +1,4 @@ -/* $Id: xm_dd.c,v 1.23 2001/04/27 21:18:25 brianp Exp $ */ +/* $Id: xm_dd.c,v 1.24 2001/05/10 12:22:32 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -43,6 +43,7 @@ #include "swrast_setup/swrast_setup.h" #include "tnl/tnl.h" #include "tnl/t_context.h" +#include "tnl/t_pipeline.h" /* @@ -990,6 +991,7 @@ void xmesa_init_pointers( GLcontext *ctx ) /* Initialize the TNL driver interface: */ tnl = TNL_CONTEXT(ctx); + tnl->Driver.RunPipeline = _tnl_run_pipeline; tnl->Driver.RenderStart = _swsetup_RenderStart; tnl->Driver.RenderFinish = _swsetup_RenderFinish; tnl->Driver.BuildProjectedVertices = _swsetup_BuildProjectedVertices; |