Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | s/Z24_S8/S8_Z24/ (stencil is in the high byte) | Brian | 2007-08-01 | 3 | -31/+34 |
| | |||||
* | Checkpoint: glClear changes - working, bug very rough. | Brian | 2007-08-01 | 2 | -15/+130 |
| | |||||
* | Build libsoftpipe.a | Keith Whitwell | 2007-08-01 | 4 | -4/+46 |
| | | | | | | | | Each pipe driver will build to a .a library, as these will optionally be included in the various DRI drivers (this will make more sense once there is at least one hardware driver...). Not strictly necessary for softpipe, but want to minimize the differences between it and actual hw implementations. | ||||
* | Obsolete. | Brian | 2007-07-31 | 2 | -250/+0 |
| | |||||
* | Redesign pipe_surface in terms of pipe_region. | Brian | 2007-07-31 | 6 | -108/+437 |
| | | | | | | struct pipe_buffer goes away. Added basic region functions to softpipe to allocate/release malloc'd regions. Surface-related code is fairly coherent now. | ||||
* | 32 and z24s8 softpipe buffers | Brian | 2007-07-30 | 2 | -19/+142 |
| | |||||
* | Merge branch 'softpipe_0_1_branch' of ↵ | Brian | 2007-07-30 | 4 | -0/+170 |
|\ | | | | | | | git+ssh://[email protected]/git/mesa/mesa into softpipe_0_1_branch | ||||
| * | Lots of improvements to the surface-related code. | Brian | 2007-07-30 | 3 | -0/+168 |
| | | | | | | | | | | | | Z testing now works with i915 driver. Add gl_renderbuffer::surface pointer (and reverse pointer). Remove intel_surface and xmesa_surface types - no longer used. | ||||
| * | compute scale for Z24 buffers | Brian | 2007-07-30 | 1 | -0/+2 |
| | | |||||
* | | Merge branch 'softpipe_0_1_branch' of ↵ | Brian | 2007-07-30 | 2 | -9/+31 |
|\| | | | | | | | git+ssh://[email protected]/git/mesa/mesa into softpipe_0_1_branch | ||||
| * | map/unmap surfaces before/after rendering | Brian | 2007-07-30 | 1 | -0/+31 |
| | | |||||
| * | remove old comments | Brian | 2007-07-30 | 1 | -9/+0 |
| | | |||||
* | | renaming, comments, clean-up | Brian | 2007-07-27 | 1 | -35/+27 |
|/ | |||||
* | Clip triangles against softpipe->cliprect which includes scissor and surface ↵ | Brian | 2007-07-27 | 2 | -44/+36 |
| | | | | | | bounds. This prevents rendering out of bounds when the viewport is partially outside the surface bounds. | ||||
* | remove obsolete comments | Brian | 2007-07-27 | 1 | -3/+0 |
| | |||||
* | Maintain cliprect (scissor) info in sp_state_derived.c. | Brian | 2007-07-27 | 3 | -31/+52 |
| | | | | | The cliprect depends on the scissor rect (if enabled), otherwise the drawing surface bounds. | ||||
* | Implement point/line quad clipping. Not quite as efficient as it probably ↵ | Brian | 2007-07-27 | 1 | -19/+70 |
| | | | | could be, but sufficient for now. | ||||
* | s/SP_TILE_H/SP_QUAD_H/ | Brian | 2007-07-27 | 1 | -3/+3 |
| | |||||
* | init quad.coverage values to 1.0 in case line AA is enabled so that we see ↵ | Brian | 2007-07-27 | 1 | -0/+7 |
| | | | | something | ||||
* | Avoid unnecessary input attrib copy by aligning exec_machine attribs. | michal | 2007-07-27 | 1 | -35/+44 |
| | |||||
* | Implement line stippling. | Brian | 2007-07-25 | 2 | -2/+40 |
| | | | | | Also added draw_stage::reset_line_stipple(). There may be a better way of doing that though. | ||||
* | rename some vars | Brian | 2007-07-25 | 1 | -9/+9 |
| | |||||
* | Fix pinterp() to compute 1 / FRAG_ATTRIB_WPOS.w Update comments too. | Brian | 2007-07-25 | 1 | -6/+7 |
| | |||||
* | Add VF_ATTRIB_VAR0..7 for varying variables. | Brian | 2007-07-24 | 1 | -0/+10 |
| | | | | The demos/fslight.c demo runs now. | ||||
* | Compute need_z and need_w properly and use the correct ↵ | Brian | 2007-07-24 | 2 | -17/+36 |
| | | | | const/linear/perspective interpolation in shade_quad(). | ||||
* | Fix a typo (i << i) that was fouling up the vertex layout info. | Brian | 2007-07-24 | 1 | -4/+7 |
| | |||||
* | Basic fragment programs run now. | Brian | 2007-07-24 | 1 | -4/+26 |
| | | | | | Handling of constants might change. For now, the st_fragment_program struct contains a pipe_constant_buffer (not a pointer). | ||||
* | rebuild quad pipeline when framebuffer changes too | Brian | 2007-07-24 | 1 | -0/+1 |
| | |||||
* | Execute fs tokens. | michal | 2007-07-23 | 1 | -2/+42 |
| | | | | Fix align128 bug. | ||||
* | Trigger tgsi compilation for fragment programs. | Keith Whitwell | 2007-07-19 | 1 | -3/+1 |
| | | | | Not sure the generated program looks correct though... | ||||
* | set INTERP_CONSTANT when appropriate | Brian | 2007-07-13 | 1 | -1/+5 |
| | | | | | Not really signficant now since draw_flat stage copies the provoking vertex color to all prim verts. | ||||
* | comments | Brian | 2007-07-13 | 1 | -2/+4 |
| | |||||
* | Enable Keith's branch-less stipple code - it works. | Brian | 2007-07-13 | 1 | -19/+0 |
| | |||||
* | Add 'prim' field to quad so that stipple and aa coverage stages can do the ↵ | Brian | 2007-07-13 | 4 | -40/+40 |
| | | | | right thing. | ||||
* | Implement AA points and AA coverage application in quad pipeline. | Brian | 2007-07-13 | 7 | -30/+158 |
| | |||||
* | Added basic occlusion counting | Brian | 2007-07-13 | 5 | -0/+93 |
| | |||||
* | Add conditional-free implementation (disabled, not tested) | Keith Whitwell | 2007-07-13 | 1 | -2/+11 |
| | |||||
* | Simplify slightly. | Keith Whitwell | 2007-07-13 | 1 | -9/+5 |
| | | | | Don't bother trying to save a small memcpy. | ||||
* | minor changes, comments about multiple color buffers, MRT. | Brian | 2007-07-12 | 1 | -1/+8 |
| | |||||
* | Add a quad 'bufloop' stage to handle glDrawBuffer(GL_FRONT_AND_BACK). | Brian | 2007-07-12 | 8 | -294/+350 |
| | | | | | 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. | ||||
* | XXX comment about skipping stipple for points/lines | Brian | 2007-07-12 | 1 | -0/+1 |
| | |||||
* | s/prim_setup/sp_draw_render_stage/, new comments | Brian | 2007-07-12 | 3 | -24/+28 |
| | |||||
* | Remove dead code | Brian | 2007-07-12 | 1 | -62/+0 |
| | |||||
* | Rename prim_stage -> draw_stage | Brian | 2007-07-12 | 5 | -15/+25 |
| | |||||
* | Added colormask, dither, multisample state. Implement colormasking stage. | Brian | 2007-07-12 | 5 | -1/+97 |
| | |||||
* | disable debug printfs | Brian | 2007-07-11 | 1 | -0/+6 |
| | |||||
* | Implement polygon stipple state tracking, application. | Brian | 2007-07-11 | 7 | -1/+72 |
| | |||||
* | fix stencil logic error, use proper front/back face value | Brian | 2007-07-11 | 1 | -20/+21 |
| | |||||
* | Compute quad.facing from prim->det and polygon winding. | Brian | 2007-07-11 | 2 | -9/+15 |
| | | | | Updated comments/questions about area vs. prim->det. | ||||
* | Checkpoint: stencil roughly working, some bugs to fix... | Brian | 2007-07-10 | 5 | -64/+235 |
| |