12,
I810_NR_TEX_REGIONS,
imesa->sarea->texList,
- & imesa->sarea->texAge,
+ (unsigned *) & imesa->sarea->texAge, /* XXX we shouldn't cast! */
& imesa->swapped,
sizeof( struct i810_texture_object_t ),
(destroy_texture_object_t *) i810DestroyTexObj );
assert( is_empty_list( & imesa->swapped ) );
}
- Xfree(imesa);
+ FREE(imesa);
}
}
12,
I830_NR_TEX_REGIONS,
imesa->sarea->texList,
- & imesa->sarea->texAge,
+ (unsigned) & imesa->sarea->texAge, /* XXX shouldn't need cast! */
& imesa->swapped,
sizeof( struct i830_texture_object_t ),
(destroy_texture_object_t *) i830DestroyTexObj );
assert( is_empty_list( & imesa->swapped ) );
}
- Xfree (imesa);
+ FREE(imesa);
}
}
#include "api_arrayelt.h"
#include "enums.h"
#include "colormac.h"
+#include "light.h"
#include "swrast/swrast.h"
#include "array_cache/acache.h"
#include "mtypes.h"
#include "array_cache/acache.h"
+#include "math/m_translate.h"
#include "tnl/tnl.h"
#include "tnl/t_pipeline.h"
_mesa_destroy_context(fxMesa->glCtx);
/* free the tdfx context */
- XFree( fxMesa );
+ FREE( fxMesa );
}
}