diff options
| author | Keith Whitwell <keith@tungstengraphics.com> | 2006-10-31 12:12:15 +0000 | 
|---|---|---|
| committer | Keith Whitwell <keith@tungstengraphics.com> | 2006-10-31 12:12:15 +0000 | 
| commit | 35ee4affc5bd2c7be3005725ce74a016a3da8b59 (patch) | |
| tree | 2cb6254c36121db295d78b86fad5575af7bea91d | |
| parent | 851d15ef3ae8e7f78f1d0ef1cf8a3ff6765354b0 (diff) | |
switch remaining drivers over to vbo
29 files changed, 68 insertions, 68 deletions
diff --git a/src/mesa/drivers/directfb/idirectfbgl_mesa.c b/src/mesa/drivers/directfb/idirectfbgl_mesa.c index 3c2a77b5bc..524249e8a5 100644 --- a/src/mesa/drivers/directfb/idirectfbgl_mesa.c +++ b/src/mesa/drivers/directfb/idirectfbgl_mesa.c @@ -53,7 +53,7 @@  #include "texformat.h"  #include "teximage.h"  #include "texstore.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h"  #include "tnl/tnl.h" diff --git a/src/mesa/drivers/dri/fb/fb_dri.c b/src/mesa/drivers/dri/fb/fb_dri.c index d6ba23bc6e..08b52b4d8f 100644 --- a/src/mesa/drivers/dri/fb/fb_dri.c +++ b/src/mesa/drivers/dri/fb/fb_dri.c @@ -50,7 +50,7 @@  #include "extensions.h"  #include "framebuffer.h"  #include "renderbuffer.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h"  #include "tnl/tnl.h" @@ -93,7 +93,7 @@ update_state( GLcontext *ctx, GLuint new_state )     /* not much to do here - pass it on */     _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 );  } @@ -365,7 +365,7 @@ fbCreateContext( const __GLcontextModes *glVisual,     /* Create module contexts */     _swrast_CreateContext( ctx ); -   _ac_CreateContext( ctx ); +   _vbo_CreateContext( ctx );     _tnl_CreateContext( ctx );     _swsetup_CreateContext( ctx );     _swsetup_Wakeup( ctx ); @@ -399,7 +399,7 @@ fbDestroyContext( __DRIcontextPrivate *driContextPriv )     if ( fbmesa ) {        _swsetup_DestroyContext( fbmesa->glCtx );        _tnl_DestroyContext( fbmesa->glCtx ); -      _ac_DestroyContext( fbmesa->glCtx ); +      _vbo_DestroyContext( fbmesa->glCtx );        _swrast_DestroyContext( fbmesa->glCtx );        /* free the Mesa context */ diff --git a/src/mesa/drivers/dri/fb/fb_egl.c b/src/mesa/drivers/dri/fb/fb_egl.c index 5c74b0b0f4..517e71f888 100644 --- a/src/mesa/drivers/dri/fb/fb_egl.c +++ b/src/mesa/drivers/dri/fb/fb_egl.c @@ -17,7 +17,7 @@  #include "extensions.h"  #include "framebuffer.h"  #include "renderbuffer.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h"  #include "tnl/tnl.h" @@ -388,7 +388,7 @@ update_state( GLcontext *ctx, GLuint new_state )     /* not much to do here - pass it on */     _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 );  } @@ -491,7 +491,7 @@ fbCreateContext(_EGLDriver *drv, EGLDisplay dpy, EGLConfig config, EGLContext sh     /* Create module contexts */     _swrast_CreateContext( ctx ); -   _ac_CreateContext( ctx ); +   _vbo_CreateContext( ctx );     _tnl_CreateContext( ctx );     _swsetup_CreateContext( ctx );     _swsetup_Wakeup( ctx ); diff --git a/src/mesa/drivers/dri/ffb/ffb_state.c b/src/mesa/drivers/dri/ffb/ffb_state.c index b81d94de25..eb13478166 100644 --- a/src/mesa/drivers/dri/ffb/ffb_state.c +++ b/src/mesa/drivers/dri/ffb/ffb_state.c @@ -40,7 +40,7 @@  #include "enums.h"  #include "swrast/swrast.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "swrast_setup/swrast_setup.h" @@ -1034,7 +1034,7 @@ static void ffbDDUpdateState(GLcontext *ctx, GLuint newstate)  	_swrast_InvalidateState( ctx, newstate );  	_swsetup_InvalidateState( ctx, newstate ); -	_ac_InvalidateState( ctx, newstate ); +	_vbo_InvalidateState( ctx, newstate );  	_tnl_InvalidateState( ctx, newstate );  	if (newstate & _NEW_TEXTURE) diff --git a/src/mesa/drivers/dri/ffb/ffb_xmesa.c b/src/mesa/drivers/dri/ffb/ffb_xmesa.c index ab2a6688ba..7c1e439364 100644 --- a/src/mesa/drivers/dri/ffb/ffb_xmesa.c +++ b/src/mesa/drivers/dri/ffb/ffb_xmesa.c @@ -38,7 +38,7 @@  #include "swrast_setup/swrast_setup.h"  #include "tnl/tnl.h"  #include "tnl/t_pipeline.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "drivers/common/driverfuncs.h"  #include "ffb_context.h" @@ -277,7 +277,7 @@ ffbCreateContext(const __GLcontextModes *mesaVis,  	/* Initialize the software rasterizer and helper modules. */  	_swrast_CreateContext( ctx ); -	_ac_CreateContext( ctx ); +	_vbo_CreateContext( ctx );  	_tnl_CreateContext( ctx );  	_swsetup_CreateContext( ctx ); @@ -313,7 +313,7 @@ ffbDestroyContext(__DRIcontextPrivate *driContextPriv)  		_swsetup_DestroyContext( fmesa->glCtx );  		_tnl_DestroyContext( fmesa->glCtx ); -		_ac_DestroyContext( fmesa->glCtx ); +		_vbo_DestroyContext( fmesa->glCtx );  		_swrast_DestroyContext( fmesa->glCtx );                  /* free the Mesa context */ diff --git a/src/mesa/drivers/dri/gamma/gamma_context.c b/src/mesa/drivers/dri/gamma/gamma_context.c index ffaf45459b..b1dcbfcdcf 100644 --- a/src/mesa/drivers/dri/gamma/gamma_context.c +++ b/src/mesa/drivers/dri/gamma/gamma_context.c @@ -28,7 +28,7 @@  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "tnl/t_pipeline.h" @@ -147,7 +147,7 @@ GLboolean gammaCreateContext( const __GLcontextModes *glVisual,     /* Initialize the software rasterizer and helper modules.      */     _swrast_CreateContext( ctx ); -   _ac_CreateContext( ctx ); +   _vbo_CreateContext( ctx );     _tnl_CreateContext( ctx );     _swsetup_CreateContext( ctx ); diff --git a/src/mesa/drivers/dri/gamma/gamma_state.c b/src/mesa/drivers/dri/gamma/gamma_state.c index 026ff5efbf..1d5ce20995 100644 --- a/src/mesa/drivers/dri/gamma/gamma_state.c +++ b/src/mesa/drivers/dri/gamma/gamma_state.c @@ -33,7 +33,7 @@  #include "colormac.h"  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #define ENABLELIGHTING 0 @@ -1664,7 +1664,7 @@ static void gammaDDUpdateState( 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 );     GAMMA_CONTEXT(ctx)->new_gl_state |= new_state;  } diff --git a/src/mesa/drivers/dri/gamma/gamma_xmesa.c b/src/mesa/drivers/dri/gamma/gamma_xmesa.c index 00f6aa32ae..e8922b1503 100644 --- a/src/mesa/drivers/dri/gamma/gamma_xmesa.c +++ b/src/mesa/drivers/dri/gamma/gamma_xmesa.c @@ -34,7 +34,7 @@  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h"  #include "tnl/tnl.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  static GLboolean   gammaInitDriver(__DRIscreenPrivate *sPriv) @@ -57,7 +57,7 @@ gammaDestroyContext(__DRIcontextPrivate *driContextPriv)      if (gmesa) {        _swsetup_DestroyContext( gmesa->glCtx );        _tnl_DestroyContext( gmesa->glCtx ); -      _ac_DestroyContext( gmesa->glCtx ); +      _vbo_DestroyContext( gmesa->glCtx );        _swrast_DestroyContext( gmesa->glCtx );        gammaFreeVB( gmesa->glCtx ); diff --git a/src/mesa/drivers/dri/mach64/mach64_context.c b/src/mesa/drivers/dri/mach64/mach64_context.c index 03ec96a222..eeb4cbcf71 100644 --- a/src/mesa/drivers/dri/mach64/mach64_context.c +++ b/src/mesa/drivers/dri/mach64/mach64_context.c @@ -38,7 +38,7 @@  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "tnl/t_pipeline.h" @@ -203,7 +203,7 @@ GLboolean mach64CreateContext( const __GLcontextModes *glVisual,     /* Initialize the software rasterizer and helper modules.      */     _swrast_CreateContext( ctx ); -   _ac_CreateContext( ctx ); +   _vbo_CreateContext( ctx );     _tnl_CreateContext( ctx );     _swsetup_CreateContext( ctx ); @@ -272,7 +272,7 @@ void mach64DestroyContext( __DRIcontextPrivate *driContextPriv  )        _swsetup_DestroyContext( mmesa->glCtx );        _tnl_DestroyContext( mmesa->glCtx ); -      _ac_DestroyContext( mmesa->glCtx ); +      _vbo_DestroyContext( mmesa->glCtx );        _swrast_DestroyContext( mmesa->glCtx );        mach64FreeVB( mmesa->glCtx ); diff --git a/src/mesa/drivers/dri/mach64/mach64_state.c b/src/mesa/drivers/dri/mach64/mach64_state.c index d4804a2c55..667a394520 100644 --- a/src/mesa/drivers/dri/mach64/mach64_state.c +++ b/src/mesa/drivers/dri/mach64/mach64_state.c @@ -40,7 +40,7 @@  #include "enums.h"  #include "colormac.h"  #include "swrast/swrast.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "swrast_setup/swrast_setup.h" @@ -1023,7 +1023,7 @@ static void mach64DDInvalidateState( 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 );     MACH64_CONTEXT(ctx)->NewGLState |= new_state;  } diff --git a/src/mesa/drivers/dri/mga/mga_xmesa.c b/src/mesa/drivers/dri/mga/mga_xmesa.c index 73bcfcce73..32cfbc6a1c 100644 --- a/src/mesa/drivers/dri/mga/mga_xmesa.c +++ b/src/mesa/drivers/dri/mga/mga_xmesa.c @@ -45,7 +45,7 @@  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h"  #include "tnl/tnl.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/t_pipeline.h" @@ -593,7 +593,7 @@ mgaCreateContext( const __GLcontextModes *mesaVis,     /* Initialize the software rasterizer and helper modules.      */     _swrast_CreateContext( ctx ); -   _ac_CreateContext( ctx ); +   _vbo_CreateContext( ctx );     _tnl_CreateContext( ctx );     _swsetup_CreateContext( ctx ); @@ -676,7 +676,7 @@ mgaDestroyContext(__DRIcontextPrivate *driContextPriv)        release_texture_heaps = (mmesa->glCtx->Shared->RefCount == 1);        _swsetup_DestroyContext( mmesa->glCtx );        _tnl_DestroyContext( mmesa->glCtx ); -      _ac_DestroyContext( mmesa->glCtx ); +      _vbo_DestroyContext( mmesa->glCtx );        _swrast_DestroyContext( mmesa->glCtx );        mgaFreeVB( mmesa->glCtx ); diff --git a/src/mesa/drivers/dri/mga/mgastate.c b/src/mesa/drivers/dri/mga/mgastate.c index 783de53197..69f85d62a5 100644 --- a/src/mesa/drivers/dri/mga/mgastate.c +++ b/src/mesa/drivers/dri/mga/mgastate.c @@ -42,7 +42,7 @@  #include "mgaregs.h"  #include "swrast/swrast.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "tnl/t_context.h"  #include "tnl/t_pipeline.h" @@ -1062,7 +1062,7 @@ static void mgaDDInvalidateState( 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 );     MGA_CONTEXT(ctx)->NewGLState |= new_state;  } diff --git a/src/mesa/drivers/dri/r128/r128_context.c b/src/mesa/drivers/dri/r128/r128_context.c index 8ec027542a..89ddafa02a 100644 --- a/src/mesa/drivers/dri/r128/r128_context.c +++ b/src/mesa/drivers/dri/r128/r128_context.c @@ -42,7 +42,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "tnl/t_pipeline.h" @@ -235,7 +235,7 @@ GLboolean r128CreateContext( const __GLcontextModes *glVisual,     /* Initialize the software rasterizer and helper modules.      */     _swrast_CreateContext( ctx ); -   _ac_CreateContext( ctx ); +   _vbo_CreateContext( ctx );     _tnl_CreateContext( ctx );     _swsetup_CreateContext( ctx ); @@ -293,7 +293,7 @@ void r128DestroyContext( __DRIcontextPrivate *driContextPriv  )        _swsetup_DestroyContext( rmesa->glCtx );        _tnl_DestroyContext( rmesa->glCtx ); -      _ac_DestroyContext( rmesa->glCtx ); +      _vbo_DestroyContext( rmesa->glCtx );        _swrast_DestroyContext( rmesa->glCtx );        if ( release_texture_heaps ) { diff --git a/src/mesa/drivers/dri/r128/r128_state.c b/src/mesa/drivers/dri/r128/r128_state.c index 1bfd370937..e476afa5d8 100644 --- a/src/mesa/drivers/dri/r128/r128_state.c +++ b/src/mesa/drivers/dri/r128/r128_state.c @@ -44,7 +44,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.  #include "enums.h"  #include "colormac.h"  #include "swrast/swrast.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "swrast_setup/swrast_setup.h" @@ -1250,7 +1250,7 @@ static void r128DDInvalidateState( 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 );     R128_CONTEXT(ctx)->NewGLState |= new_state;  } diff --git a/src/mesa/drivers/dri/s3v/s3v_context.c b/src/mesa/drivers/dri/s3v/s3v_context.c index 7b0aa0daee..2d2f704ad7 100644 --- a/src/mesa/drivers/dri/s3v/s3v_context.c +++ b/src/mesa/drivers/dri/s3v/s3v_context.c @@ -6,7 +6,7 @@  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "tnl/t_pipeline.h" @@ -139,7 +139,7 @@ GLboolean s3vCreateContext(const __GLcontextModes *glVisual,  	/* Initialize the software rasterizer and helper modules.  	 */  	_swrast_CreateContext( ctx ); -	_ac_CreateContext( ctx ); +	_vbo_CreateContext( ctx );  	_tnl_CreateContext( ctx );  	_swsetup_CreateContext( ctx ); diff --git a/src/mesa/drivers/dri/s3v/s3v_state.c b/src/mesa/drivers/dri/s3v/s3v_state.c index 4f412edf09..08ce0f565c 100644 --- a/src/mesa/drivers/dri/s3v/s3v_state.c +++ b/src/mesa/drivers/dri/s3v/s3v_state.c @@ -10,7 +10,7 @@  #include "colormac.h"  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  /* #define DEBUG(str) printf str */ @@ -826,7 +826,7 @@ static void s3vDDUpdateState( 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 );  	S3V_CONTEXT(ctx)->new_gl_state |= new_state;  } diff --git a/src/mesa/drivers/dri/s3v/s3v_xmesa.c b/src/mesa/drivers/dri/s3v/s3v_xmesa.c index 533424cdea..c451f7452b 100644 --- a/src/mesa/drivers/dri/s3v/s3v_xmesa.c +++ b/src/mesa/drivers/dri/s3v/s3v_xmesa.c @@ -13,7 +13,7 @@  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h"  #include "tnl/tnl.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  /* #define DEBUG(str) printf str */ @@ -38,7 +38,7 @@ s3vDestroyContext(__DRIcontextPrivate *driContextPriv)      if (vmesa) {        _swsetup_DestroyContext( vmesa->glCtx );        _tnl_DestroyContext( vmesa->glCtx ); -      _ac_DestroyContext( vmesa->glCtx ); +      _vbo_DestroyContext( vmesa->glCtx );        _swrast_DestroyContext( vmesa->glCtx );        s3vFreeVB( vmesa->glCtx ); diff --git a/src/mesa/drivers/dri/savage/savage_xmesa.c b/src/mesa/drivers/dri/savage/savage_xmesa.c index aaba58ed33..3557ce0118 100644 --- a/src/mesa/drivers/dri/savage/savage_xmesa.c +++ b/src/mesa/drivers/dri/savage/savage_xmesa.c @@ -40,7 +40,7 @@  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h"  #include "tnl/tnl.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/t_pipeline.h" @@ -501,7 +501,7 @@ savageCreateContext( const __GLcontextModes *mesaVis,     /* Initialize the software rasterizer and helper modules.      */     _swrast_CreateContext( ctx ); -   _ac_CreateContext( ctx ); +   _vbo_CreateContext( ctx );     _tnl_CreateContext( ctx );     _swsetup_CreateContext( ctx ); @@ -591,7 +591,7 @@ savageDestroyContext(__DRIcontextPrivate *driContextPriv)        _swsetup_DestroyContext(imesa->glCtx );        _tnl_DestroyContext( imesa->glCtx ); -      _ac_DestroyContext( imesa->glCtx ); +      _vbo_DestroyContext( imesa->glCtx );        _swrast_DestroyContext( imesa->glCtx );        /* free the Mesa context */ diff --git a/src/mesa/drivers/dri/savage/savagestate.c b/src/mesa/drivers/dri/savage/savagestate.c index e554afdbb7..5c2b397bde 100644 --- a/src/mesa/drivers/dri/savage/savagestate.c +++ b/src/mesa/drivers/dri/savage/savagestate.c @@ -41,7 +41,7 @@  #include "savage_bci.h"  #include "swrast/swrast.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "swrast_setup/swrast_setup.h" @@ -1676,7 +1676,7 @@ static void savageDDInvalidateState( 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 );     SAVAGE_CONTEXT(ctx)->new_gl_state |= new_state;  } diff --git a/src/mesa/drivers/dri/sis/sis6326_state.c b/src/mesa/drivers/dri/sis/sis6326_state.c index 6bc2c6de3b..08402fb3e2 100644 --- a/src/mesa/drivers/dri/sis/sis6326_state.c +++ b/src/mesa/drivers/dri/sis/sis6326_state.c @@ -37,7 +37,7 @@  #include "enums.h"  #include "colormac.h"  #include "swrast/swrast.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "swrast_setup/swrast_setup.h" @@ -645,7 +645,7 @@ sis6326DDInvalidateState( 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 );  	smesa->NewGLState |= new_state;  } diff --git a/src/mesa/drivers/dri/sis/sis_context.c b/src/mesa/drivers/dri/sis/sis_context.c index a300a080ec..89b81da347 100644 --- a/src/mesa/drivers/dri/sis/sis_context.c +++ b/src/mesa/drivers/dri/sis/sis_context.c @@ -53,7 +53,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "tnl/t_pipeline.h" @@ -306,7 +306,7 @@ sisCreateContext( const __GLcontextModes *glVisual,     /* Initialize the software rasterizer and helper modules.      */     _swrast_CreateContext( ctx ); -   _ac_CreateContext( ctx ); +   _vbo_CreateContext( ctx );     _tnl_CreateContext( ctx );     _swsetup_CreateContext( ctx ); @@ -353,7 +353,7 @@ sisDestroyContext ( __DRIcontextPrivate *driContextPriv )     if ( smesa != NULL ) {        _swsetup_DestroyContext( smesa->glCtx );        _tnl_DestroyContext( smesa->glCtx ); -      _ac_DestroyContext( smesa->glCtx ); +      _vbo_DestroyContext( smesa->glCtx );        _swrast_DestroyContext( smesa->glCtx );        if (smesa->using_agp) diff --git a/src/mesa/drivers/dri/sis/sis_state.c b/src/mesa/drivers/dri/sis/sis_state.c index 2a10a5fbf6..33a2f089b8 100644 --- a/src/mesa/drivers/dri/sis/sis_state.c +++ b/src/mesa/drivers/dri/sis/sis_state.c @@ -42,7 +42,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.  #include "enums.h"  #include "colormac.h"  #include "swrast/swrast.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "swrast_setup/swrast_setup.h" @@ -707,7 +707,7 @@ sisDDInvalidateState( 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 );     smesa->NewGLState |= new_state;  } diff --git a/src/mesa/drivers/dri/tdfx/tdfx_context.c b/src/mesa/drivers/dri/tdfx/tdfx_context.c index dd40544d49..07d2cb1db5 100644 --- a/src/mesa/drivers/dri/tdfx/tdfx_context.c +++ b/src/mesa/drivers/dri/tdfx/tdfx_context.c @@ -54,7 +54,7 @@  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "tnl/t_pipeline.h" @@ -331,7 +331,7 @@ GLboolean tdfxCreateContext( const __GLcontextModes *mesaVis,     /* Initialize the software rasterizer and helper modules.      */     _swrast_CreateContext( ctx ); -   _ac_CreateContext( ctx ); +   _vbo_CreateContext( ctx );     _tnl_CreateContext( ctx );     _swsetup_CreateContext( ctx ); @@ -612,7 +612,7 @@ tdfxDestroyContext( __DRIcontextPrivate *driContextPriv )        _swsetup_DestroyContext( fxMesa->glCtx );        _tnl_DestroyContext( fxMesa->glCtx ); -      _ac_DestroyContext( fxMesa->glCtx ); +      _vbo_DestroyContext( fxMesa->glCtx );        _swrast_DestroyContext( fxMesa->glCtx );        tdfxFreeVB( fxMesa->glCtx ); diff --git a/src/mesa/drivers/dri/tdfx/tdfx_state.c b/src/mesa/drivers/dri/tdfx/tdfx_state.c index 59e6549e5e..42cb5dfaa3 100644 --- a/src/mesa/drivers/dri/tdfx/tdfx_state.c +++ b/src/mesa/drivers/dri/tdfx/tdfx_state.c @@ -46,7 +46,7 @@  #include "teximage.h"  #include "swrast/swrast.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "tnl/t_pipeline.h"  #include "swrast_setup/swrast_setup.h" @@ -1234,7 +1234,7 @@ static void tdfxDDInvalidateState( 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 );     TDFX_CONTEXT(ctx)->new_gl_state |= new_state;  } diff --git a/src/mesa/drivers/dri/trident/trident_context.c b/src/mesa/drivers/dri/trident/trident_context.c index 9c8f7ef01f..a07b40fd5d 100644 --- a/src/mesa/drivers/dri/trident/trident_context.c +++ b/src/mesa/drivers/dri/trident/trident_context.c @@ -30,7 +30,7 @@  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "tnl/t_pipeline.h" @@ -142,7 +142,7 @@ tridentCreateContext( const __GLcontextModes *glVisual,     /* Initialize the software rasterizer and helper modules.      */     _swrast_CreateContext( ctx ); -   _ac_CreateContext( ctx ); +   _vbo_CreateContext( ctx );     _tnl_CreateContext( ctx );     _swsetup_CreateContext( ctx ); @@ -182,7 +182,7 @@ tridentDestroyContext(__DRIcontextPrivate *driContextPriv)      if (tmesa) {        _swsetup_DestroyContext( tmesa->glCtx );        _tnl_DestroyContext( tmesa->glCtx ); -      _ac_DestroyContext( tmesa->glCtx ); +      _vbo_DestroyContext( tmesa->glCtx );        _swrast_DestroyContext( tmesa->glCtx );        /* free the Mesa context */ diff --git a/src/mesa/drivers/dri/trident/trident_state.c b/src/mesa/drivers/dri/trident/trident_state.c index a9be50688b..6cdf23092a 100644 --- a/src/mesa/drivers/dri/trident/trident_state.c +++ b/src/mesa/drivers/dri/trident/trident_state.c @@ -26,7 +26,7 @@   */  #include "trident_context.h"  #include "trident_lock.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h"  #include "tnl/tnl.h" @@ -469,7 +469,7 @@ tridentDDUpdateState( 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 );     TRIDENT_CONTEXT(ctx)->new_gl_state |= new_state;  } diff --git a/src/mesa/drivers/dri/unichrome/via_context.c b/src/mesa/drivers/dri/unichrome/via_context.c index fa143186c1..38dcf458db 100644 --- a/src/mesa/drivers/dri/unichrome/via_context.c +++ b/src/mesa/drivers/dri/unichrome/via_context.c @@ -42,7 +42,7 @@  #include "swrast/swrast.h"  #include "swrast_setup/swrast_setup.h"  #include "tnl/tnl.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/t_pipeline.h" @@ -588,7 +588,7 @@ viaCreateContext(const __GLcontextModes *visual,      /* Initialize the software rasterizer and helper modules.       */      _swrast_CreateContext(ctx); -    _ac_CreateContext(ctx); +    _vbo_CreateContext(ctx);      _tnl_CreateContext(ctx);      _swsetup_CreateContext(ctx); @@ -713,7 +713,7 @@ viaDestroyContext(__DRIcontextPrivate *driContextPriv)  	_swsetup_DestroyContext(vmesa->glCtx);          _tnl_DestroyContext(vmesa->glCtx); -        _ac_DestroyContext(vmesa->glCtx); +        _vbo_DestroyContext(vmesa->glCtx);          _swrast_DestroyContext(vmesa->glCtx);          /* free the Mesa context */  	_mesa_destroy_context(vmesa->glCtx); diff --git a/src/mesa/drivers/dri/unichrome/via_state.c b/src/mesa/drivers/dri/unichrome/via_state.c index c001661d0b..102a333068 100644 --- a/src/mesa/drivers/dri/unichrome/via_state.c +++ b/src/mesa/drivers/dri/unichrome/via_state.c @@ -40,7 +40,7 @@  #include "via_3d_reg.h"  #include "swrast/swrast.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  #include "tnl/tnl.h"  #include "swrast_setup/swrast_setup.h" @@ -1501,7 +1501,7 @@ static void viaInvalidateState(GLcontext *ctx, GLuint newState)      _swrast_InvalidateState(ctx, newState);      _swsetup_InvalidateState(ctx, newState); -    _ac_InvalidateState(ctx, newState); +    _vbo_InvalidateState(ctx, newState);      _tnl_InvalidateState(ctx, newState);  } diff --git a/src/mesa/drivers/glide/fxdd.c b/src/mesa/drivers/glide/fxdd.c index 0ee0e0cae0..e218a316aa 100644 --- a/src/mesa/drivers/glide/fxdd.c +++ b/src/mesa/drivers/glide/fxdd.c @@ -55,7 +55,7 @@  #include "tnl/tnl.h"  #include "tnl/t_context.h"  #include "tnl/t_pipeline.h" -#include "array_cache/acache.h" +#include "vbo/vbo.h"  | 
