aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers
Commit message (Collapse)AuthorAgeFilesLines
* set GR_STWHINT_ST_DIFF_TMU1 flag in the init() function (fixes multiarb demo)Brian Paul2001-09-191-2/+7
|
* fix fallback for stippled polygons, removed a debug messageBrian Paul2001-09-191-6/+7
|
* compute dst->ooz, not dst->z in clip interpolation functionBrian Paul2001-09-191-1/+1
|
* remove some debugKeith Whitwell2001-09-181-5/+5
|
* Fix FX driver to the point where gears & morph3d work.Keith Whitwell2001-09-183-26/+15
| | | | Textures are broken (eg. isosurf).
* clean up makefiles some more for WindowsKarl Schultz2001-09-181-11/+10
|
* compiler warningsKarl Schultz2001-09-181-14/+14
|
* remove carriage return charsKarl Schultz2001-09-183-3653/+3653
|
* Win32 updates (Karl Schultz)Brian Paul2001-09-143-3600/+3653
|
* more GL 1.3 and GLX 1.4 updatesBrian Paul2001-09-142-5/+15
|
* minor re-orgBrian Paul2001-09-123-42/+46
|
* hook compressed texture functions into driverBrian Paul2001-09-121-1/+4
|
* fixed s/w alpha bug 458411Brian Paul2001-09-101-7/+2
|
* minor changes, prototype Pbuffer supportBrian Paul2001-09-011-4/+54
|
* prototype work for Pbuffer supportBrian Paul2001-09-012-28/+258
|
* fixed dangling pointer problem (Chris Burghart)Brian Paul2001-08-311-1/+10
|
* changes to allow the driver to compile - still doesn't work thoughBrian Paul2001-08-295-6/+29
|
* added OSMESA_MAX_WIDTH/HEIGHT queriesBrian Paul2001-08-281-1/+7
|
* OpenGL 1.3 supportBrian Paul2001-08-282-4/+5
|
* bumped version string to 3.5.1Brian Paul2001-08-201-2/+2
|
* fixed GLX context sharing bug (reported by Eric Plante)Brian Paul2001-08-071-3/+3
|
* wglUseFontBitmapsA() update (Frank Warmerdam)Brian Paul2001-07-271-7/+135
|
* Fix Alan Barnett's 'try10' display list bug.Keith Whitwell2001-07-171-4/+4
|
* Lighting now emits colors as CHAN_TYPE, as it used to. This will requireKeith Whitwell2001-07-171-7/+7
| | | | minor adjustments in the dri drivers for twosided lighting to work again.
* more work on float colors (still not finished)Brian Paul2001-07-141-4/+4
|
* assorted changes for supporting GLfloat color channels (not done)Brian Paul2001-07-131-7/+7
|
* Committing in .Jouk Jansen2001-07-132-0/+35
| | | | | | | | | Modified Files: Mesa/src/descrip.mms Mesa/src/FX/fxtris.c Mesa/src/FX/fxvb.c -updated OpenVMS makefile -fixed compilation if FX is NOT defined. ----------------------------------------------------------------------
* Rename some of the tnl->Driver.* functions to tnl->Driver.Render.*, to make itKeith Whitwell2001-07-128-1271/+1211
| | | | | | | | | | | | | | clear that these are owned by t_vb_render.c. Make swrast_setup opaque - it now hooks itself directly into tnl->Driver.Render.*. Add a _swsetup_Wakeup() call that does this. Update X11 (tested), osmesa and FX drivers for this change. FX compiles but is probably broken as the changes there are large. It was the only remaining driver that used the internal _swsetup_ functions for interp and copy_pv. This usage has been replaced with code from the DRI tdfx driver.
* fixed logic error in OSMesaMakeCurrent() for 565 pixel support (Lars Andersson)Brian Paul2001-07-051-3/+4
|
* More .cvsignore updates.pesco2001-07-022-0/+2
|
* support for RGB_565 pixels (Lars Andersson), untestedBrian Paul2001-06-271-3/+212
|
* Enable GL_ARB_texture_compression for XMesa/GLX driver. TextureBrian Paul2001-06-151-1/+7
| | | | | compression isn't really implmented. Just updated glTexImageXD() to accept compressed internal format tokens.
* replace 255 with CHAN_MAXBrian Paul2001-06-151-7/+7
|
* fixed a commentBrian Paul2001-06-141-2/+2
|
* Allow different max texture sizes for 1/2D, 3D and cube maps.Brian Paul2001-06-131-1/+0
|
* removed some code in XMesaDestroyContext() which could lead to a segfaultBrian Paul2001-06-041-6/+9
|
* apply David Miller's quad/backcolor patchKeith Whitwell2001-06-011-23/+49
|
* fixed s/w alpha channel bugBrian Paul2001-05-311-2/+2
|
* forgot to check-in yesterdayBrian Paul2001-05-302-0/+489
|
* more DRI libGL-related changesBrian Paul2001-05-293-20/+24
|
* removed some old DRI-ismsBrian Paul2001-05-294-54/+13
|
* added new functions to GLX_functions[]Brian Paul2001-05-291-4/+65
|
* more work on XMesa / libGL integrationBrian Paul2001-05-253-230/+158
|
* added some casts so that older glx.h can be usedBrian Paul2001-05-242-9/+9
|
* Initial changes to allow Mesa and its fake GLX to be built into XFree86 libGL.Brian Paul2001-05-243-64/+138
|
* prototyping some new stuffBrian Paul2001-05-241-82/+314
|
* s/Height/height/ (Jeff Potter)Brian Paul2001-05-211-2/+2
|
* New triangle rasterization code. Store per-span initial/step values in theBrian Paul2001-05-142-532/+551
| | | | | new triangle_span struct. Much cleaner code and possibilities for future optimizations.
* Fix for glean texgen test.Keith Whitwell2001-05-141-8/+8
|
* Set 'prefer_float_colors' true, now that tnl uses them natively.Keith Whitwell2001-05-101-55/+40
| | | | Apply Jeff Epler's optimization to ci spans as well, remove old code.