Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-02-04 | fix typo | Brian Paul | |
2003-06-05 | Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything. | Ian Romanick | |
2003-03-25 | replace _mesa_ prefix with _swrast_, remove s_histogram.[ch] | Brian Paul | |
2003-03-01 | Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch] | Brian Paul | |
Moved type conversion and interpolation macros into macros.h Updated all the files that used to include mmath.h | |||
2002-10-30 | s/BZERO/_mesa_bzero/ | Brian Paul | |
2002-10-24 | Header file clean-up: | Brian Paul | |
1. Remove all.h and PC_HEADER junk. 2. Rolled mem.c and mem.h into imports.c and imports.h 3. Include imports.h instead of mem.h Restore _mesa_create/initialize_context() to be like they were in 4.0.4 New wrappers for a few std C functions: _mesa_atoi(), _mesa_strstr(), etc. | |||
2002-07-09 | Overhaul of glRead/DrawBuffer() code. Now, swrast->Driver.SetBuffer() | Brian Paul | |
indicates the read AND draw color buffer for all software rasterization. Lots of related clean-ups. See RELNOTES-4.1 for details. | |||
2002-06-15 | Added 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-03-19 | Use MESA_PBUFFER_ALLOC/FREE macros to allocate all framebuffer and texture | Brian Paul | |
memory. These can be overridden by applications which need to manage this memory specially. Contributed by Gerk Huisma. Also, new code for 8-bit -> 16-bit/channel texture image storage which fills in the least-significant bits properly. | |||
2002-03-16 | Lots of changes related to framebuffer/window buffer resizing. Basically, | Brian Paul | |
instead of passing a GLcontext* to ResizeBuffers(), pass a GLframebuffer*. The idea is that a window can be resized without it being bound to a rendering context. This makes for a nice clean-up in the XFree86 server-side GLX code. Renamed ctx->Driver.ResizeBuffersMESA() to ctx->Driver.ResizeBuffers(). | |||
2002-02-02 | sw_span can now hold x/y arrays of fragment positions - getting ready to | Brian Paul | |
ditch the pb (pixel buffer) code. Converted point drawing, bitmaps and aa lines to use new span functions. | |||
2001-09-19 | silence compiler warnings (last batch for src) | Karl Schultz | |
2001-07-13 | assorted changes for supporting GLfloat color channels (not done) | Brian Paul | |
2001-04-20 | Minor fixes for Win32 (Karl Schultz). | Brian Paul | |
2001-04-10 | Added IROUND_POS() macro to mmath.h and use where appropriate. (Klaus ↵ | Brian Paul | |
Niederkrueger) | |||
2001-03-19 | Split driver struct into swrast/tnl/core components. | Keith Whitwell | |
2001-03-12 | Consistent copyright info (version number, date) across all files. | Gareth Hughes | |
2001-03-08 | More g++ warning fixes. Fixes for CHAN_BITS==16, it seems to work. | Brian Paul | |
2001-03-07 | fixed a bunch of g++ warnings/errors. Compiling with g++ can help find lots ↵ | Brian Paul | |
of potential problems | |||
2001-03-03 | lots of gl_*() to _mesa_*() namespace clean-up | Brian Paul | |
2001-01-23 | Replaced struct gl_visual with struct __GLcontextModesRec from glcore.h. | Brian Paul | |
Replace "RGBAMode" with "rgbMode", etc. Other minor clean-ups. | |||
2000-11-13 | Cleanup of derived state calculation prior to seperating software T&L | Keith Whitwell | |
into a new directory. Specifically the handling of changes to lighting lighting space (light in model vs. light in eye) have been revamped. Moved several derived values used only by swrast into that directory. Removed direct calls to swrast_flush() from vbrender.c -- pushed into ctx->Driver.RenderFinish. Optimized flat-shading case in swrast_setup. | |||
2000-11-05 | Reorganized software rasterizer as a module which manages its own state, | Keith Whitwell | |
with tighter interfaces with the rest of the world. Proper documentation to come. | |||
2000-10-31 | Moved software rasterizer functionality to new directory. | Keith Whitwell | |