diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2006-10-30 16:56:56 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2006-10-30 16:56:56 +0000 |
commit | 48f5deab94be832a782a440f55a7bc742d50a62f (patch) | |
tree | 3d99b7a745f0ac36be7274a6a84ed981964f5291 /src/mesa/drivers/dri/i810/i810state.c | |
parent | 99efde461d3b8615863bdb7308e05289e0db0422 (diff) | |
download | external_mesa3d-48f5deab94be832a782a440f55a7bc742d50a62f.zip external_mesa3d-48f5deab94be832a782a440f55a7bc742d50a62f.tar.gz external_mesa3d-48f5deab94be832a782a440f55a7bc742d50a62f.tar.bz2 |
switch several dri drivers over
Diffstat (limited to 'src/mesa/drivers/dri/i810/i810state.c')
-rw-r--r-- | src/mesa/drivers/dri/i810/i810state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i810/i810state.c b/src/mesa/drivers/dri/i810/i810state.c index 6f9d4b5..3ad2528 100644 --- a/src/mesa/drivers/dri/i810/i810state.c +++ b/src/mesa/drivers/dri/i810/i810state.c @@ -21,8 +21,8 @@ #include "i810ioctl.h" #include "swrast/swrast.h" -#include "array_cache/acache.h" #include "tnl/tnl.h" +#include "vbo/vbo.h" #include "swrast_setup/swrast_setup.h" #include "tnl/t_pipeline.h" @@ -953,7 +953,7 @@ static void i810InvalidateState( GLcontext *ctx, GLuint new_state ) { _swrast_InvalidateState( ctx, new_state ); _swsetup_InvalidateState( ctx, new_state ); - _ac_InvalidateState( ctx, new_state ); + _vbo_InvalidateState( ctx, new_state ); _tnl_InvalidateState( ctx, new_state ); I810_CONTEXT(ctx)->new_state |= new_state; } |