summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/glide/fxdd.c
AgeCommit message (Collapse)Author
2010-02-25Drop glide driverKristian Høgsberg
2010-02-19Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg
2010-02-19mesa: replace old MEMCPY macro with memcpyBrian Paul
2009-03-07mesa: remove GL_MESA_program_debug extensionBrian Paul
This was never fully fleshed out and hasn't been used.
2009-03-02mesa: use Stencil._Enabled field instead of Stencil.EnabledBrian Paul
2009-01-28Make GL_ARB_draw_buffers mandatoryIan Romanick
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2009-01-28Make GL_{EXT,SUN}_multi_draw_arrays and GL_IBM_multimode_draw_arrays mandatoryIan Romanick
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2009-01-28Make GL_ARB_vertex_buffer_object mandatoryIan Romanick
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2009-01-28Make GL_ARB_texture_compression mandatoryIan Romanick
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2008-09-18mesa: prefix more #includes with "main/"Brian Paul
2008-01-06Replace gl_framebuffer's _ColorDrawBufferMask with _ColorDrawBufferIndexesBrian
Each array element is now a BUFFER_x token rather than a BUFFER_BIT_x bitmask. The number of active color buffers is specified by _NumColorDrawBuffers. This builds on the previous DrawBuffer changes and will help with drivers implementing GL_ARB_draw_buffers.
2007-04-16remove _tnl_arb_vertex_program_stageBrian
2007-02-16Commiting a few minor fixes to glut fbdev (segfault on a separate stack)Sean D'Epagnier
Updated all drivers that used the old _ac_ functions to use the new _vbo_ functions. I know this fixed the fbdev driver, it looks like it might fix some other drivers too.
2006-11-02merge current trunk into vbo branchAlan Hourihane
2006-10-31switch remaining drivers over to vboKeith Whitwell
2006-10-15Remove calls to _mesa_ResizeBuffersMESA() - generally replace with code toBrian Paul
check the current window size, then call _mesa_resize_framebuffer().
2005-09-13Replace ctx->Driver.StencilOp/Func/Mask() functions withBrian Paul
ctx->Driver.Stencil*Separate() functions.
2005-09-09add _tnl_arb_vertex_program_stage to all drivers which already have ↵Roland Scheidegger
_tnl_vertex_program_stage. Fixes crashes when using vertex programs. Tested on r200 only (fix by Keith Whitwell)
2005-05-09accomodate new frambuffer changesDaniel Borca
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-01-17cleaned up warningsDaniel Borca
2004-12-21added GL_EXT_stencil_two_side (yes, it works)Daniel Borca
2004-12-20comment reorg.Daniel Borca
made some functions static. hide vp behind an envvar. removed unnecessary multitex constraint for napalm hw.
2004-12-06small fix for debug pathsDaniel Borca
2004-11-27Remove _mesa_ResizeBuffersMESA() call from _mesa_set_viewport().Brian Paul
Now, the driver's Viewport routine should call _mesa_ResizeBuffersMESA() if necessary. Cleaned up code related to GLframebuffer width/height initialization. Set initial viewport/scissor params in _mesa_make_current2(), instead of in the drivers' MakeCurrent functions.
2004-11-15fix _mesa_image_address2d invocationDaniel Borca
2004-11-10GL_(UN)PACK_SKIP_IMAGES should only be applied to 3D texture pack/unpackingBrian Paul
and ignored for 1D and 2D images. Need to pass in image dimensions (1,2,3) to the _mesa_image_address() function. This change gets propogated to some other routines. Also added new _mesa_image_address[123]d() convenience functions.
2004-10-02added support for GL_ARB_draw_buffersBrian Paul
2004-09-27stencil wrap works, either HW or SW (Ian Romanick)Daniel Borca
2004-09-13cleanup and bugfixes for fxDDClear()Daniel Borca
2004-08-20hide GL_ARB_texture_compression from non-VSA cardsDaniel Borca
2004-08-19why is GL_ARB_texture_env_combine different from EXT?Daniel Borca
2004-08-16fixed pixel drawing routines, some cleanupDaniel Borca
2004-07-26Rush is back on ZBUFFERDaniel Borca
added DrawPixels555 and DrawPixels565
2004-07-23fixed pixelpiped DrawBitmap / DrawPixels (clipping was upside-down)Daniel Borca
2004-07-20GL_EXT_texture_env_add shouldn't be conditioned by multitex, or should it?Daniel Borca
2004-07-19trying vertex_program...Daniel Borca
2004-07-16minor correctionsDaniel Borca
2004-07-05added GL_ARB_point_sprite.Daniel Borca
color masking correctly implemented for 15bpp. small fixes for textures and tri engine.
2004-07-02added GL_EXT_fog_coord.Daniel Borca
added GL_EXT_blend_equation_separate. minor cleanup.
2004-06-24hack for compressed textures with aspectratio greater than 8:1Daniel Borca
2004-06-19Hack for linear fogging. Added empty routines for WGL_ARB_pixel_format ↵Daniel Borca
WGL_ARB_render_texture WGL_ARB_pbuffer
2004-05-31reworked FXT1Daniel Borca
minor fixes to fxMesa
2004-05-19added GL_NV_blend_squareDaniel Borca
fixed alpha blending modes for Napalm minor fix in compressed texture aspectratio adjust
2004-05-18added some core-level extensionsDaniel Borca
2004-05-12minor fixesDaniel Borca
2004-05-10fixed bugs in fxddtex.cDaniel Borca
cleaned up win32 definition files
2004-04-29FXT1 preparationsDaniel Borca
2004-03-29code cleanup hehehDaniel Borca
2004-03-21Implemented support for software-based AUX color buffers.Brian Paul
Only available with Xlib driver for now. Assorted clean-ups related to Draw/ReadBuffer(). Renamed FRONT_LEFT_BIT -> DD_FRONT_LEFT_BIT, etc.