aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/swrast/s_accum.c
Commit message (Collapse)AuthorAgeFilesLines
* simplify INIT_SPAN codeBrian2007-06-291-1/+3
|
* add some rb->Data null ptr checks (bug 7205)Brian2007-03-151-1/+3
|
* Don't pass x/y/width/height to ctx->Driver.Accum().Brian Paul2006-10-181-4/+10
| | | | | Compute the region after we've locked (and possibly updated the buffer's size). Same thing is needed for ctx->Driver.Clear().
* Lots of changes to support runtime renderbuffer depths.Brian Paul2006-10-121-2/+2
| | | | | | _swrast_read_rgba_span() now takes a datatype parameter. New optimization for glReadPixels(format=GL_RGB). New glCopyPixels optimization for the simple, common cases.
* New SWspan and SWspanarrays typedefs.Brian Paul2006-10-011-1/+1
|
* Change logicop, blend, masking functions to use the colors/indexes in theBrian Paul2006-09-241-1/+1
| | | | sw_span object, rather than an explicit parameter.
* use span.array->rgba instead of local var in accum_return()Brian Paul2006-09-241-15/+16
|
* Get rid of _swrast_mask_rgba_array() and _swrast_mask_index_array().Brian Paul2006-09-221-2/+6
|
* fixes for CHAN_BITS!=8Brian Paul2006-04-271-6/+14
|
* Remove ACCUM_BITS.Brian Paul2005-09-211-1/+1
|
* Remove last remnants of pre-renderbuffer code.Brian Paul2005-09-031-9/+1
|
* Remove last of the old span code.Brian Paul2005-06-021-7/+1
|
* Major check-in of changes for GL_EXT_framebuffer_object extension.Brian Paul2005-05-041-370/+432
| | | | | | | Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested.
* new comments and assertionsBrian Paul2004-11-271-0/+2
|
* fix typoBrian Paul2004-02-041-4/+3
|
* Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything.Ian Romanick2003-06-051-1/+0
|
* replace _mesa_ prefix with _swrast_, remove s_histogram.[ch]Brian Paul2003-03-251-11/+11
|
* Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch]Brian Paul2003-03-011-2/+1
| | | | | Moved type conversion and interpolation macros into macros.h Updated all the files that used to include mmath.h
* s/BZERO/_mesa_bzero/Brian Paul2002-10-301-2/+3
|
* Header file clean-up:Brian Paul2002-10-241-2/+2
| | | | | | | | 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.
* Overhaul of glRead/DrawBuffer() code. Now, swrast->Driver.SetBuffer()Brian Paul2002-07-091-9/+7
| | | | | indicates the read AND draw color buffer for all software rasterization. Lots of related clean-ups. See RELNOTES-4.1 for details.
* Added ctx parameter to _mesa_debug()Brian Paul2002-06-151-2/+2
| | | | | | Added _mesa_printf() Updated SetDrawBuffer() function in all drivers (ala 4.0.3) Import 4.0.3/DRI changes.
* Use MESA_PBUFFER_ALLOC/FREE macros to allocate all framebuffer and textureBrian Paul2002-03-191-3/+3
| | | | | | | 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.
* Lots of changes related to framebuffer/window buffer resizing. Basically,Brian Paul2002-03-161-18/+18
| | | | | | | 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().
* sw_span can now hold x/y arrays of fragment positions - getting ready toBrian Paul2002-02-021-5/+5
| | | | | ditch the pb (pixel buffer) code. Converted point drawing, bitmaps and aa lines to use new span functions.
* silence compiler warnings (last batch for src)Karl Schultz2001-09-191-2/+2
|
* assorted changes for supporting GLfloat color channels (not done)Brian Paul2001-07-131-48/+54
|
* Minor fixes for Win32 (Karl Schultz).Brian Paul2001-04-201-1/+2
|
* Added IROUND_POS() macro to mmath.h and use where appropriate. (Klaus ↵Brian Paul2001-04-101-7/+8
| | | | Niederkrueger)
* Split driver struct into swrast/tnl/core components.Keith Whitwell2001-03-191-16/+16
|
* Consistent copyright info (version number, date) across all files.Gareth Hughes2001-03-121-12/+12
|
* More g++ warning fixes. Fixes for CHAN_BITS==16, it seems to work.Brian Paul2001-03-081-3/+3
|
* fixed a bunch of g++ warnings/errors. Compiling with g++ can help find lots ↵Brian Paul2001-03-071-13/+13
| | | | of potential problems
* lots of gl_*() to _mesa_*() namespace clean-upBrian Paul2001-03-031-7/+7
|
* Replaced struct gl_visual with struct __GLcontextModesRec from glcore.h.Brian Paul2001-01-231-3/+14
| | | | | Replace "RGBAMode" with "rgbMode", etc. Other minor clean-ups.
* Cleanup of derived state calculation prior to seperating software T&LKeith Whitwell2000-11-131-36/+40
| | | | | | | | | | | | 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.
* Reorganized software rasterizer as a module which manages its own state,Keith Whitwell2000-11-051-110/+118
| | | | | | with tighter interfaces with the rest of the world. Proper documentation to come.
* Moved software rasterizer functionality to new directory.Keith Whitwell2000-10-311-0/+499