diff options
author | Keith Whitwell <[email protected]> | 2001-05-10 12:22:32 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-05-10 12:22:32 +0000 |
commit | bc69de5f21ebb4d6e1c65bf5652d17a9fc87dda7 (patch) | |
tree | 5dcde6087d184c9611443f5b0d66d3377e3421a8 /src/mesa/drivers/osmesa | |
parent | 7954a0cafdce545cde193e8ec317afa85be2b736 (diff) |
Driver interface changes
Diffstat (limited to 'src/mesa/drivers/osmesa')
-rw-r--r-- | src/mesa/drivers/osmesa/osmesa.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/drivers/osmesa/osmesa.c b/src/mesa/drivers/osmesa/osmesa.c index e453f4127bc..65ab67798cb 100644 --- a/src/mesa/drivers/osmesa/osmesa.c +++ b/src/mesa/drivers/osmesa/osmesa.c @@ -1,4 +1,4 @@ -/* $Id: osmesa.c,v 1.53 2001/04/04 21:54:21 brianp Exp $ */ +/* $Id: osmesa.c,v 1.54 2001/05/10 12:22:32 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -57,6 +57,7 @@ #include "swrast/s_triangle.h" #include "tnl/tnl.h" #include "tnl/t_context.h" +#include "tnl/t_pipeline.h" @@ -1857,6 +1858,7 @@ static void osmesa_update_state( GLcontext *ctx, GLuint new_state ) swdd->SetReadBuffer = set_read_buffer; + tnl->Driver.RunPipeline = _tnl_run_pipeline; tnl->Driver.RenderStart = _swsetup_RenderStart; tnl->Driver.RenderFinish = _swsetup_RenderFinish; tnl->Driver.BuildProjectedVertices = _swsetup_BuildProjectedVertices; |