summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/common
AgeCommit message (Collapse)Author
2005-05-23Import Thomas Helstrom's SSE memcpy code from the via X.org driver.Keith Whitwell
Add a TextureMemCpy callback, called from texstore.c when copying texture data via the memcpy_texture() path. Enable this code in the via driver - 100% speedup in texdown.c results.
2005-05-04Major check-in of changes for GL_EXT_framebuffer_object extension.Brian Paul
Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested.
2005-03-22add FreeTexImageData hook to help single-copy texturing in driversKeith Whitwell
2005-02-24More GL_EXT_framebuffer_object: rename some things, added device driver hooks.Brian Paul
2004-12-12Added driver hooks for GetTexImage() and GetCompressedTexImage().Brian Paul
Added fallback _mesa_get_[compressed]_teximage() routines to texstore.c
2004-10-31use _mesa_unmap_buffer by defaultBrian Paul
2004-10-02added support for GL_ARB_draw_buffersBrian Paul
2004-04-27Removed the old teximage code.Brian Paul
Moved all code related to specific texture compression modes into new texcompress_s3tc.c and texcompress_fxt1.c files (but not implemented).
2004-04-05 Committing in .Jouk Jansen
Correction on last commit (My FTP-server on linux is playing games with <CR>'s) Modified Files: Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/shader/arbprogparse.c Mesa/src/mesa/shader/descrip.mms Mesa/src/mesa/swrast/descrip.mms Mesa/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
2004-04-05 Committing in .Jouk Jansen
Updated OpenVMS compile support due to shader directory. Removed <CR>'s in arbprogparse.c Modified Files: Mesa/src/mesa/descrip.mms Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/shader/arbprogparse.c Mesa/src/mesa/shader/descrip.mms Mesa/src/mesa/swrast/descrip.mms Mesa/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
2004-01-27Added support for EXT_blend_equation_separate / ATI_blend_equation_separate.Ian Romanick
The internal driver interface was also changed to use BlendEquationSeparate instead of BlendEquation.
2004-01-23added device driver hooks for BindProgram, NewProgram, DeleteProgramBrian Paul
2004-01-23 Committing in .Jouk Jansen
Trying to remove the <CR> at the end of each line. Modified Files: Mesa/src/mesa/descrip.mms Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms ----------------------------------------------------------------------
2004-01-22 Committing in .Jouk Jansen
Updated OpenVMS compile support Modified Files: Mesa/Makefile.X11 Mesa/src/mesa/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms Added Files: Mesa/src/mesa/drivers/common/descrip.mms ----------------------------------------------------------------------
2004-01-21Remove dd_function_table::BlendFunc. All drivers now useIan Romanick
dd_function_table:BlendFuncSeparate. If a driver does not actually support EXT_blend_func_separate, it can assume that the RGB and alpha blend functions are the same.
2004-01-20remove duplicate t_dd_* filesKeith Whitwell
2004-01-20_mesa_init_driver_functions() to initialize dd_function_tableBrian Paul
2003-12-09In fact, bring all the changes from mesa/tnl_dd to mesa/drivers/common.Keith Whitwell
2003-12-09Remove old ubyte-color support code. Update interp, copy_pv for floatKeith Whitwell
colors in VB arrays.
2003-01-13fix fog stride bugs (Michel Danzer)Brian Paul
2002-10-29updated email addressesBrian Paul
2002-10-23Fix projtex interp bugKeith Whitwell
2002-10-11lineloop fixKeith Whitwell
2002-10-08change fog from GLfloat to GLfloat[4] (like other vertex attribs)Brian Paul
2002-10-08import from DRI CVSBrian Paul
2002-09-17pull-in changes from DRI/Mesa-4.0.4Brian Paul
2002-08-21s/ProjectedClipPtr/NdcPtr/Brian Paul
2002-06-15Added ctx parameter to _mesa_debug()Brian Paul
Added _mesa_printf() Updated SetDrawBuffer() function in all drivers (ala 4.0.3) Import 4.0.3/DRI changes.
2002-06-05more big-endian tweaksBrian Paul
2002-06-03bring over Michel Daenzer's DRI changesBrian Paul
2002-02-13More suport for t&l driversKeith Whitwell
Fix GLuint compare bugs Fix RESET_STIPPLE calls
2001-12-20Fix clipping problem on mgaKeith Whitwell
2001-12-13fix for ubyte colorsKeith Whitwell
2001-12-11fix glut tess lockupKeith Whitwell
2001-09-23More of the sameKeith Whitwell
2001-07-17Lighting now emits colors as CHAN_TYPE, as it used to. This will requireKeith Whitwell
minor adjustments in the dri drivers for twosided lighting to work again.
2001-06-01apply David Miller's quad/backcolor patchKeith Whitwell
2001-05-14Fix for glean texgen test.Keith Whitwell
2001-05-09remove debug codeKeith Whitwell
2001-05-03fix for moebius infinite loopKeith Whitwell
2001-04-30Lots more eval fixesKeith Whitwell
2001-04-29typoKeith Whitwell
2001-04-29More HW_DIVIDE checks.Keith Whitwell
2001-04-29Allow drivers to provide a dynamic CHECK_HW_DIVIDE, to turn the divide offKeith Whitwell
according to a runtime test.
2001-04-28fix color copying in twosided quadsKeith Whitwell
2001-04-28add specialized interp for backcolor, edgeflagsKeith Whitwell
2001-04-28Support for floating point color representation in tnl module.Keith Whitwell
2001-04-09remove a HAVE_ELTS that I'd stuck before.Alan Hourihane
2001-04-09fix use of projected vertices with notex vertices when DO_PTEX isn't set.Alan Hourihane
2001-04-07Add quad and quad_stripAlan Hourihane