summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/x11
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2001-05-10 12:22:32 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2001-05-10 12:22:32 +0000
commitbc69de5f21ebb4d6e1c65bf5652d17a9fc87dda7 (patch)
tree5dcde6087d184c9611443f5b0d66d3377e3421a8 /src/mesa/drivers/x11
parent7954a0cafdce545cde193e8ec317afa85be2b736 (diff)
Driver interface changes
Diffstat (limited to 'src/mesa/drivers/x11')
-rw-r--r--src/mesa/drivers/x11/xm_dd.c4
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 548ebb0c54..dbb01f343e 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;