summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/glide/fxddtex.c
AgeCommit message (Collapse)Author
2001-05-09minor clean-upsBrian Paul
2001-05-02teximage updates. seems to work fine.Brian Paul
2001-04-24texture image code updates (not finished)Brian Paul
2001-04-20compilation fixes - texturing isn't working at this timeBrian Paul
2001-04-20Fixed a texture conversion problem: sometimes need to produce an intermediateBrian Paul
texture image in the base internal format between user->Mesa format conversion. See comments in texstore.c
2001-03-28compilation updatesBrian Paul
2001-03-28- Restore texImage->IntFormat.Gareth Hughes
- Fix FX driver texture image conversions.
2001-03-21added teximage rescaling code. untested at this pointBrian Paul
2001-03-21use new texture conversion code, still have to do image rescalingBrian Paul
2001-03-03used indent to clean-up the codeBrian Paul
2001-03-03lots of gl_*() to _mesa_*() namespace clean-upBrian Paul
2001-02-17Changed FetchTexel() function pointer arguments.Brian Paul
Implemented glGetTexImage(format=GL_COLOR_INDEX). Changed _mesa_unpack_depth_span() args. Minor changes/clean-ups in mtypes.h. Histogram counter component sizes were wrong.
2001-02-07new texture image routines work nowBrian Paul
2001-02-06updated texture image handling - STILL UNTESTEDBrian Paul
2001-02-06Overhaul of texture image handling.Brian Paul
1. gl_texture_image struct's Data pointer points to images in driver's format. 2. Added FetchTexel() function pointer to struct gl_texture_image. 3. Changed Driver Tex[Sub]Image functions, return void now. 4. Texture storage/fetch code in new texstore.c file. 5. Removed texture.[ch] - functions moved to state.c Note: FX driver updates not finished yet.
2000-12-26Major rework of tnl moduleKeith Whitwell
New array_cache module Support 8 texture units in core mesa (now support 8 everywhere) Rework core mesa statechange operations to avoid flushing on many noop statechanges.
2000-11-24Support for swappable t&l modules, including an example one in the FXKeith Whitwell
driver (enable with FX_ALLOW_VTXFMT=t).
2000-11-19Replaced Texture.CurrentD[] with separate Texture.Current1/2/3D vars.Brian Paul
Completely removed the dirty texture object list. Set texObj->Complete to GL_FALSE to indicate dirty. Made point/line/triangle/quad SWvertex parameters const. Minor code clean-ups.
2000-11-05Lots of changes:Keith Whitwell
- use the new interface to the software rasterizer. - manage all fallbacks internally, hooking in swrast or swrast_setup if necessary. - removed lots of marginal code no longer appropriate in a maturing driver. - reworked the vertex-setup and triangle routines, including drawing unfilled triangles from within the driver.
2000-10-30Replace the flags Mesa was using for ctx->NewState with a new setKeith Whitwell
based on the GL attribute groups. Introduced constants describing the circumstances under which some key derived values can change: _SWRAST_NEW_RASTERMASK -- ctx->RasterMask _SWRAST_NEW_TRIANGLE -- The software rasterizer's triangle function _DD_NEW_FEEDBACK -- the 'DD_FEEDBACK' bit in ctx->TriangleCaps These are helpful in deciding whether you need to recalculate state if your recalculation involves reference to a derived value.
2000-10-28Basic work to support deep color channels:Brian Paul
Replace GLubyte with GLchan Replace 255 with CHAN_MAX
2000-06-16replaced fxTMReloadSubMipMapLevel() call w/ fxTMReloadMipMapLevel() to ↵Brian Paul
work-around subtex bug
2000-05-23enable and clean-up of paletted texture codeBrian Paul
2000-05-04EnvMode GL_BLEND and tex invalidate changes from DaryllBrian Paul
2000-04-17dynamically allocate color table data, uses less memoryBrian Paul
2000-04-15wrapper for grTexLodBiasValue()Brian Paul
2000-03-29new texture image download codeBrian Paul
2000-03-27removed tfxMipMapLevel's used and translate fields, initial teximage clean-upBrian Paul
2000-03-23added new texture image functions, minor clean-upBrian Paul
2000-03-07added GL_EXT_texture_lod_bias extension (Michael Vance)Brian Paul
2000-03-07added target parameter to Driver.TexEnv()Brian Paul
2000-03-03clean-up warningsBrian Paul
2000-02-09udpated version/copyright infoBrian Paul
2000-02-04added support for GL_RGB5_A1 internal texture format (Eero Pajarre)Brian Paul
2000-01-18updated with latest DRI tree changesBrian Paul
1999-12-10applied Daryll's patchesBrian Paul
1999-11-15texture palette updateBrian Paul
1999-11-15fixed mistake in merge regarding texture palettesBrian Paul
1999-11-15update/merge with Daryll's X server changesBrian Paul
1999-11-11updated for new texture color palette structBrian Paul
1999-10-19Changes to reduce the memory footprint of display listsKeith Whitwell
1999-10-13now using MALLOC, CALLOC, FREE, etc macrosBrian Paul
1999-10-05Added gl_ext_multitexture_ADD suport.Miklos Fazekas
1999-08-19Initial revisionjtg