Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-08-03 | Remove "static region" support. | Keith Whitwell | |
The frontbuffer/driBufMgr interactions are handled as a special case in the intel_screen code. | |||
2007-08-02 | added pipe->supported_formats() | Brian | |
2007-08-02 | more formats | Brian | |
2007-08-02 | pipe->clear() now takes a surface, rather than color/depth/stencil flags. | Brian | |
pipe->clear() only used to clear whole buffers (no scissor) w/out masking. Draw a colored quadrilateral in all other cases. | |||
2007-08-02 | Fix make recursion. | Keith Whitwell | |
Unfortunately means you can't just type make in softpipe any more. | |||
2007-08-02 | Implement new draw_vertices() path for simple vertex array drawing, use it ↵ | Brian | |
for glClear. | |||
2007-08-02 | Remove references to accum buffers in softpipe. | Keith Whitwell | |
Also some minor clear fixes. | |||
2007-08-02 | add PIPE_MASK_RGBA | Brian | |
2007-08-02 | Merge branch 'softpipe_0_1_branch' of ↵ | Brian | |
git+ssh://brianp@git.freedesktop.org/git/mesa/mesa into softpipe_0_1_branch | |||
2007-08-02 | Remove remnants of i915 texture-from-pbo code. | Keith Whitwell | |
2007-08-02 | Reroute some clear functionality. | Keith Whitwell | |
Still require the intelClear() call to flush batchbuffers. That will be removed later... | |||
2007-08-01 | implement masking in sp_region_fill() | Brian | |
2007-08-01 | get cliprect bounds after softpipe_update_derived() | Brian | |
2007-08-01 | Re-implement intelClear() in terms of softpipe_clear(). Pretty simple/small ↵ | Brian | |
now. Note: softpipe_clear() should really be renamed to something like pipe_clear_with_blits() and put into a driver-indepedent module... | |||
2007-08-01 | More work on glClear. | Brian | |
Add a 'mask' param to region_fill() to help with clearing combined Z/stencil buffers, glColorMask, etc. | |||
2007-08-01 | s/Z24_S8/S8_Z24/ (stencil is in the high byte) | Brian | |
2007-08-01 | Checkpoint: glClear changes - working, bug very rough. | Brian | |
2007-08-01 | Build libsoftpipe.a | Keith Whitwell | |
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. | |||
2007-07-31 | Obsolete. | Brian | |
2007-07-31 | Redesign pipe_surface in terms of pipe_region. | Brian | |
struct pipe_buffer goes away. Added basic region functions to softpipe to allocate/release malloc'd regions. Surface-related code is fairly coherent now. | |||
2007-07-31 | Lift region-related functions up to the pipe interface. | Brian | |
Some of these functions probably should be driver-private. Note: intel_buffer_object is in p_state.h and should be fixed/removed. There are just a few i915 dependencies in intel_region.c | |||
2007-07-30 | 32 and z24s8 softpipe buffers | Brian | |
2007-07-30 | Merge branch 'softpipe_0_1_branch' of ↵ | Brian | |
git+ssh://brianp@git.freedesktop.org/git/mesa/mesa into softpipe_0_1_branch | |||
2007-07-30 | Lots of improvements to the surface-related code. | Brian | |
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. | |||
2007-07-30 | compute scale for Z24 buffers | Brian | |
2007-07-30 | Merge branch 'softpipe_0_1_branch' of ↵ | Brian | |
git+ssh://brianp@git.freedesktop.org/git/mesa/mesa into softpipe_0_1_branch | |||
2007-07-30 | map/unmap surfaces before/after rendering | Brian | |
2007-07-30 | remove old comments | Brian | |
2007-07-27 | renaming, comments, clean-up | Brian | |
2007-07-27 | Clip triangles against softpipe->cliprect which includes scissor and surface ↵ | Brian | |
bounds. This prevents rendering out of bounds when the viewport is partially outside the surface bounds. | |||
2007-07-27 | remove obsolete comments | Brian | |
2007-07-27 | Maintain cliprect (scissor) info in sp_state_derived.c. | Brian | |
The cliprect depends on the scissor rect (if enabled), otherwise the drawing surface bounds. | |||
2007-07-27 | Implement point/line quad clipping. Not quite as efficient as it probably ↵ | Brian | |
could be, but sufficient for now. | |||
2007-07-27 | s/SP_TILE_H/SP_QUAD_H/ | Brian | |
2007-07-27 | init quad.coverage values to 1.0 in case line AA is enabled so that we see ↵ | Brian | |
something | |||
2007-07-27 | Avoid unnecessary input attrib copy by aligning exec_machine attribs. | michal | |
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-25 | rename some vars | Brian | |
2007-07-25 | implement DDX, DDY instructions | Brian | |
2007-07-25 | Fix pinterp() to compute 1 / FRAG_ATTRIB_WPOS.w Update comments too. | Brian | |
2007-07-25 | patch things up enough to allow texture sampling to work | Brian | |
2007-07-24 | use consistent indentation | Brian | |
2007-07-24 | check return value of tgsi_parse_init() | Brian | |
2007-07-24 | added PROGRAM_NAMED_PARAM in map_register_file() | Brian | |
2007-07-24 | Add VF_ATTRIB_VAR0..7 for varying variables. | Brian | |
The demos/fslight.c demo runs now. | |||
2007-07-24 | added PROGRAM_UNIFORM to map_register_file() | Brian | |
2007-07-24 | comments | Brian | |
2007-07-24 | s/GLuint/GLbitfield/ | Brian | |
2007-07-24 | Compute need_z and need_w properly and use the correct ↵ | Brian | |
const/linear/perspective interpolation in shade_quad(). | |||
2007-07-24 | Fix a typo (i << i) that was fouling up the vertex layout info. | Brian | |