Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-07-24 | Basic fragment programs run now. | Brian | |
Handling of constants might change. For now, the st_fragment_program struct contains a pipe_constant_buffer (not a pointer). | |||
2007-07-24 | rebuild quad pipeline when framebuffer changes too | Brian | |
2007-07-24 | Merge branch 'softpipe_0_1_branch' of ↵ | Brian | |
git+ssh://brianp@git.freedesktop.org/git/mesa/mesa into softpipe_0_1_branch | |||
2007-07-23 | Execute fs tokens. | michal | |
Fix align128 bug. | |||
2007-07-19 | Trigger tgsi compilation for fragment programs. | Keith Whitwell | |
Not sure the generated program looks correct 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-13 | set INTERP_CONSTANT when appropriate | Brian | |
Not really signficant now since draw_flat stage copies the provoking vertex color to all prim verts. | |||
2007-07-13 | comments | Brian | |
2007-07-13 | Enable Keith's branch-less stipple code - it works. | Brian | |
2007-07-13 | Add 'prim' field to quad so that stipple and aa coverage stages can do the ↵ | Brian | |
right thing. | |||
2007-07-13 | Implement AA points and AA coverage application in quad pipeline. | Brian | |
2007-07-13 | Added basic occlusion counting | Brian | |
2007-07-13 | minor rename | Brian | |
2007-07-13 | Add conditional-free implementation (disabled, not tested) | Keith Whitwell | |
2007-07-13 | Simplify slightly. | Keith Whitwell | |
Don't bother trying to save a small memcpy. | |||
2007-07-12 | minor changes, comments about multiple color buffers, MRT. | Brian | |
2007-07-12 | Add a quad 'bufloop' stage to handle glDrawBuffer(GL_FRONT_AND_BACK). | Brian | |
This removes the notion of multiple color buffers from all other stages. Will need a bit more work when shaders with multiple render targets arrive. | |||
2007-07-12 | XXX comment about skipping stipple for points/lines | Brian | |
2007-07-12 | s/prim_setup/sp_draw_render_stage/, new comments | Brian | |
2007-07-12 | Remove dead code | Brian | |
2007-07-12 | Rename prim_stage -> draw_stage | Brian | |
2007-07-12 | Added colormask, dither, multisample state. Implement colormasking 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 | disable debug printfs | 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-11 | Implement polygon stipple state tracking, application. | Brian | |
2007-07-11 | fix stencil logic error, use proper front/back face value | Brian | |
2007-07-11 | Compute quad.facing from prim->det and polygon winding. | Brian | |
Updated comments/questions about area vs. prim->det. | |||
2007-07-10 | Checkpoint: stencil roughly working, some bugs to fix... | Brian | |
2007-07-10 | Begin hooking up stenciling. | Brian | |
2007-07-10 | clean-ups | Brian | |
2007-07-10 | Fill in remaining switch cases. Only call next stage if quad->mask != 0. | Brian | |
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 | Do depth testing with integer values. | Brian | |
Using floats (and float->ushort->float conversion) introduces errors. Only GLushort depth buffers work for now... | |||
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 | Comments, minor clean-up. | Brian | |
2007-07-10 | comments | Brian | |
2007-07-10 | Added comments, assertions. | 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-10 | remove some dead/disabled stuff | Brian | |
2007-07-09 | Remove softpipe includes | Brian | |