diff options
author | Keith Whitwell <[email protected]> | 2000-10-31 18:09:44 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2000-10-31 18:09:44 +0000 |
commit | 724abeb058ca9372c5a9b9e38ee43dde1accaa41 (patch) | |
tree | 964fba63d45d79ff38dab32f8e8614e68d46e4bc /src/mesa/main/state.c | |
parent | e3a051e0538a605551f4d58294c94f5eb00ed07f (diff) |
Moved the software rasterizer to a new directory.
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 32727d09864..600d4a2c5a1 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -1,4 +1,4 @@ -/* $Id: state.c,v 1.38 2000/10/30 16:32:43 brianp Exp $ */ +/* $Id: state.c,v 1.39 2000/10/31 18:09:45 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -68,7 +68,6 @@ #include "pixeltex.h" #include "points.h" #include "polygon.h" -#include "quads.h" #include "rastpos.h" #include "readpix.h" #include "rect.h" @@ -80,12 +79,12 @@ #include "texobj.h" #include "texstate.h" #include "texture.h" -#include "triangle.h" #include "types.h" #include "varray.h" #include "vbfill.h" #include "vbrender.h" #include "winpos.h" +#include "swrast/swrast.h" #endif @@ -1002,10 +1001,10 @@ void gl_update_state( GLcontext *ctx ) * and triangle functions. */ if (ctx->IndirectTriangles & DD_SW_RASTERIZE) { - gl_set_point_function(ctx); - gl_set_line_function(ctx); - gl_set_triangle_function(ctx); - gl_set_quad_function(ctx); + _swrast_set_point_function(ctx); + _swrast_set_line_function(ctx); + _swrast_set_triangle_function(ctx); + _swrast_set_quad_function(ctx); if ((ctx->IndirectTriangles & (DD_TRI_SW_RASTERIZE|DD_QUAD_SW_RASTERIZE|DD_TRI_CULL)) == |