summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added colormask, dither, multisample state. Implement colormasking stage.Brian2007-07-1211-4/+129
|
* front/back-face determination was wrongBrian2007-07-121-1/+1
|
* culling was invertedBrian2007-07-121-1/+1
|
* handle edge flags for GL_POLYGONsBrian2007-07-121-2/+26
|
* fix MIN/MAX mix-upBrian2007-07-121-3/+7
|
* remove unused hw_data_offsetBrian2007-07-111-4/+6
|
* disable debug printfsBrian2007-07-111-0/+6
|
* remove glDepthFunc(GL_LEQUAL) change from prev commitBrian2007-07-111-8/+0
|
* Fix broken depth offset.Brian2007-07-111-5/+6
| | | | | The edge vectors were totally wrong. Need to multiply bias units by the min resolvable depth delta.
* Obsolete file.Brian2007-07-111-70/+0
|
* Implement polygon stipple state tracking, application.Brian2007-07-1111-1/+138
|
* need to clamp floats to [0,1] in write functionsBrian2007-07-111-2/+2
|
* fix stencil logic error, use proper front/back face valueBrian2007-07-111-20/+21
|
* Compute quad.facing from prim->det and polygon winding.Brian2007-07-112-9/+15
| | | | Updated comments/questions about area vs. prim->det.
* Checkpoint: stencil roughly working, some bugs to fix...Brian2007-07-107-66/+303
|
* Begin hooking up stenciling.Brian2007-07-108-16/+175
|
* clean-upsBrian2007-07-101-4/+4
|
* Fill in remaining switch cases. Only call next stage if quad->mask != 0.Brian2007-07-102-22/+61
|
* remove debug printfBrian2007-07-101-2/+0
|
* Fix line clipping bug. New comments.Brian2007-07-101-16/+23
| | | | | | Need to use a new prim_header for the post-clipped line. Otherwise, we were changing the header passed to us from the vb code. That messed up the vertex pointers for the next line primitive.
* clean-up, commentsBrian2007-07-102-30/+18
|
* clamp after offsetting, new commentsBrian2007-07-101-16/+18
|
* remove unneeded casts, added commentsBrian2007-07-101-5/+5
|
* Do depth testing with integer values.Brian2007-07-103-14/+41
| | | | | Using floats (and float->ushort->float conversion) introduces errors. Only GLushort depth buffers work for now...
* fix problems with polygon offsetBrian2007-07-101-11/+10
|
* comments, clean-upBrian2007-07-101-4/+5
|
* added commentsBrian2007-07-101-3/+6
|
* Fix front/back mix-up. added comments.Brian2007-07-101-3/+13
|
* press 'f' to toggle GL_CCW/GL_CW front faceBrian2007-07-101-18/+14
|
* use 'c' to cycle through polygon cull modesBrian2007-07-101-24/+54
|
* use cursor keys to translate triangleBrian2007-07-101-12/+33
|
* Comments, minor clean-up.Brian2007-07-101-9/+12
|
* commentsBrian2007-07-101-10/+10
|
* Added comments, assertions.Brian2007-07-101-0/+13
|
* Fix EMIT_ATTR() to populate the draw->vf_attr_to_slot[] array.Brian2007-07-101-10/+37
| | | | | | Note that attribute index has to be biased by two, since vertex->data[] starts after the header and clipcoord fields. See comments for details. Added a bunch of comments/docs.
* remove some dead/disabled stuffBrian2007-07-101-19/+19
|
* Remove softpipe includesBrian2007-07-091-2/+0
|
* s/G_/SP_/Brian2007-07-093-15/+15
|
* Rename G_NEW_* tokens to SP_NEW_*Brian2007-07-098-26/+26
|
* Obsolete file.Brian2007-07-091-47/+0
|
* New 'draw' module for primitive drawing (clipping, culling, etc).Brian2007-07-0921-334/+368
|
* New 'draw' module for handling the various stages of primitive drawing ↵Brian2007-07-091-0/+182
| | | | (clipping, culling, etc).
* Rename/move some files to modularize the primitive/draw code.Brian2007-07-099-0/+0
|
* Fix function names.michal2007-07-061-2/+2
|
* Indent.michal2007-07-061-148/+171
| | | | Fix function prototype.
* Merge branch 'master' of git+ssh://[email protected]/git/mesa/mesa ↵michal2007-07-06299-10394/+12743
|\ | | | | | | into softpipe_0_1_branch
| * stencil pixel map didn't work in _mesa_unpack_stencil_span(), bug 11475Brian2007-07-051-12/+12
| |
| * Be more consistant with paths in #includes. Eventually, eliminate a bunch ↵Brian2007-07-0460-224/+222
| | | | | | | | of -I flags.
| * support more modes, added -f cmd line optionBrian2007-07-041-15/+90
| |
| * assorted clean-upsBrian2007-07-041-54/+49
| |