Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-08-20 | remove dead code related to vf module | Brian | |
2007-08-20 | Checkpoint: remove more of the old draw_vb() code. | Brian | |
2007-08-20 | Start to remove the temporary draw_vb() and draw_vertices() code. | Brian | |
new st_draw_vertices() utility used by glClear and glDrawPixels | |||
2007-08-20 | Move guts of vertex array drawing into the 'draw' module. | Brian | |
2007-08-20 | fix cache overflow bug in get_vertex() | Brian | |
2007-08-20 | Merge branch 'softpipe_0_1_branch' of ↵ | Brian | |
git+ssh://brianp@git.freedesktop.org/git/mesa/mesa into softpipe_0_1_branch | |||
2007-08-19 | Fix some draw_arrays issues. | Brian | |
We weren't mapping all the needed vertex array buffers. Move array state that was temporarily in draw_context to softpipe_context. Remove a bunch of dead code. | |||
2007-08-17 | replace memcpy() with assignment, better type safety | Brian | |
2007-08-17 | added CLIP_x_SHIFT vals | Brian | |
2007-08-17 | added pipe ptr to draw_context | Brian | |
2007-08-17 | define CLIP_LEFT/RIGHT etc | Brian | |
2007-08-17 | fix edgeflag bug | Brian | |
2007-08-16 | Silence compiler warnings. | michal | |
2007-08-16 | Remove many dependencies on mesa headers. | Brian | |
To build with mesa, need -DMESA in makefile/config file. | |||
2007-08-16 | move the draw_alloc/free_tmps() functions to draw_prim.c | Brian | |
2007-08-16 | Remove GL/mesa types, rearrange things into more logical groups | Brian | |
2007-08-16 | Drawing code refactoring. | Brian | |
Move code duplicated between draw_vb.c and sp_draw_arrays.c into draw_prim.c draw_vb.c will eventually go away, but this seems like a good step anyway. | |||
2007-08-16 | point/line/polygon drawing (factored out of draw_vb.c) | Brian | |
2007-08-15 | Remove mesa include directories, be stricter about include paths. | Keith Whitwell | |
2007-08-15 | added vertex array info fields | Brian | |
2007-08-15 | added draw_set_vertex_array_info() | Brian | |
2007-08-15 | comment | Brian | |
2007-08-15 | comments, minor clean-ups | Brian | |
2007-08-14 | use regular malloc/free instead of macros | Brian | |
2007-08-14 | Beginnings of a demand-filled post-tnl vertex cache. | Keith Whitwell | |
Probably breaks a bit of stuff, eg unfilled clipping, edgeflags, etc. | |||
2007-08-13 | with Y=0=top, front/back determination is negated | Brian | |
2007-08-02 | Implement new draw_vertices() path for simple vertex array drawing, use it ↵ | Brian | |
for glClear. | |||
2007-07-25 | Implement line stippling. | Brian | |
Also added draw_stage::reset_line_stipple(). There may be a better way of doing that though. | |||
2007-07-13 | Fix more polygon winding, culling confusion. | Brian | |
If the determinant of the triangle is positive, its winding is CCW (right-handed coord system). | |||
2007-07-13 | Fix for-loop in interp() so we don't go out of bounds. | Brian | |
Improved comments for that loop. Added some sanity check assertions regarding vertex layout. | |||
2007-07-12 | Rename prim_stage -> draw_stage | Brian | |
2007-07-12 | front/back-face determination was wrong | Brian | |
2007-07-12 | culling was inverted | Brian | |
2007-07-12 | handle edge flags for GL_POLYGONs | Brian | |
2007-07-12 | fix MIN/MAX mix-up | Brian | |
2007-07-11 | remove unused hw_data_offset | Brian | |
2007-07-11 | Fix broken depth offset. | Brian | |
The edge vectors were totally wrong. Need to multiply bias units by the min resolvable depth delta. | |||
2007-07-10 | Fix line clipping bug. New comments. | Brian | |
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. | |||
2007-07-10 | clamp after offsetting, new comments | Brian | |
2007-07-10 | remove unneeded casts, added comments | Brian | |
2007-07-10 | comments, clean-up | Brian | |
2007-07-10 | added comments | Brian | |
2007-07-10 | Fix front/back mix-up. added comments. | Brian | |
2007-07-10 | Fix EMIT_ATTR() to populate the draw->vf_attr_to_slot[] array. | Brian | |
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. | |||
2007-07-09 | Remove softpipe includes | Brian | |
2007-07-09 | New 'draw' module for primitive drawing (clipping, culling, etc). | Brian | |
2007-07-09 | New 'draw' module for handling the various stages of primitive drawing ↵ | Brian | |
(clipping, culling, etc). | |||
2007-07-09 | Rename/move some files to modularize the primitive/draw code. | Brian | |