aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/sis/sis_clear.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove x/y/width/height parameters from Clear functions.Brian Paul2006-11-011-7/+2
|
* Want to stop passing x/y/width/height to Clear() function.Brian Paul2006-10-181-19/+11
| | | | | | | The coordinates need to be computed after we've got the hw lock. Code updated to: 1. Ignore all/x/y/width/height/ params passed to Clear func. 2. Pass 0,0,0,0,0 to _swrast_Clear() until they're totally removed.
* updates to dri drivers for recent stencil changesKeith Whitwell2006-05-081-3/+4
|
* Bug 4996.Brian Paul2005-11-091-1/+1
| | | | | Replace use of FLOAT_TO_USHORT with either CLAMPED_FLOAT_TO_USHORT or UNCLAMPED_FLOAT_TO_USHORT. Same should be done for UBYTE, UINT, etc.
* Cut a bunch of code by not trying to precompute the blit commands and insteadEric Anholt2005-10-241-64/+35
| | | | | just do it per blit. No noticable performance difference (or behavior difference, in my tests), and a significant difference in sanity.
* Bug #4615: Fix the SiS driver for the renderbuffer changes. Previously, allEric Anholt2005-10-191-3/+3
| | | | | | | drirenderbuffers pointed at screen offset 0 and NULL. Instead, set up the front buffer at startup but leave the others for later, since sis allocates them on demand rather than using the static method of the other non-sis-descendent drivers. Some basic apps work, but fallbacks may be broken still.
* Major check-in of changes for GL_EXT_framebuffer_object extension.Brian Paul2005-05-041-19/+19
| | | | | | | Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested.
* Fix reflect demo: We were using the 3D Clear path unnecessarily, which appearsEric Anholt2004-06-091-7/+10
| | | | to be broken in the stencil case for unknown reasons.
* Clean up some warnings by making sis_fatal_error a macro, and let it take anEric Anholt2004-05-241-2/+2
| | | | argument of a message to print. Make some assert(0)s use sis_fatal_error.
* Adjustments to make everything use IOCTL/sarea defines in DRM insteadJon Smirl2004-03-111-2/+2
| | | | of glx/mini. removes glx/mini/drm.h glx/mini/sarea.h
* merge latest DRI sis driver changes from the DRI trunkAlan Hourihane2003-12-041-40/+34
|
* add the SiS driver - no kernel driver yetAlan Hourihane2003-09-301-0/+454
(build tested, but not physically tested)