summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2007-08-03framebuffer object functionsBrian
2007-08-03Remove dead filesKeith Whitwell
2007-08-03Rip out more dead drawing-related code.Keith Whitwell
2007-08-03Remove "static region" support.Keith Whitwell
The frontbuffer/driBufMgr interactions are handled as a special case in the intel_screen code.
2007-08-03Simplify frontbuffer / sarea / rotation management.Keith Whitwell
Remove lots of old cruft.
2007-08-03Workaround wierd oops on gutsy when building mesa.Keith Whitwell
2007-08-02added pipe->supported_formats()Brian
2007-08-02hook in teximage bitsBrian
2007-08-02more formatsBrian
2007-08-02trim #includesBrian
2007-08-02beginings of teximage functionsBrian
2007-08-02pipe->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-02call st_init_cb_drawpixelsBrian
2007-08-02added st_cb_drawpixels.cBrian
2007-08-02initial work for textured-quad glDrawPixelsBrian
2007-08-02remove st_draw.h includeBrian
2007-08-02setup more state for clear_with_quad()Brian
2007-08-02Merge branch 'softpipe_0_1_branch' of ↵Brian
git+ssh://brianp@git.freedesktop.org/git/mesa/mesa into softpipe_0_1_branch
2007-08-02get rid of accum paramBrian
2007-08-02Remove all references to swrast.Keith Whitwell
The one place the functionality continues to be needed is as last-ditch implementations of TexCopyImage, etc. TBD what to do about that, but that will be an issue for state_tracker, not for here.
2007-08-02Fix make recursion.Keith Whitwell
Unfortunately means you can't just type make in softpipe any more.
2007-08-02Implement new draw_vertices() path for simple vertex array drawing, use it ↵Brian
for glClear.
2007-08-02Remove references to accum buffers in softpipe.Keith Whitwell
Also some minor clear fixes.
2007-08-02Remove intel_state.c, intel_rotate.[ch]Keith Whitwell
2007-08-02New header file.Brian
2007-08-02include st_cb_clear.hBrian
2007-08-02sketch out clearing with quadsBrian
2007-08-02add PIPE_MASK_RGBABrian
2007-08-02comment follow-upBrian
2007-08-02Merge branch 'softpipe_0_1_branch' of ↵Brian
git+ssh://brianp@git.freedesktop.org/git/mesa/mesa into softpipe_0_1_branch
2007-08-02Remove intelClear() hack.Keith Whitwell
Have added intel_batchbuffer_flush calls to the blit functions. We still shouldn't be calling back into this remnant intel code from the softpipe driver, though, so that will go too at some point.
2007-08-02Remove remnants of i915 texture-from-pbo code.Keith Whitwell
2007-08-02Reroute some clear functionality.Keith Whitwell
Still require the intelClear() call to flush batchbuffers. That will be removed later...
2007-08-01implement masking in sp_region_fill()Brian
2007-08-01rearrange things in xmesa_clear() a bitBrian
2007-08-01get cliprect bounds after softpipe_update_derived()Brian
2007-08-01Re-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-01More work on glClear.Brian
Add a 'mask' param to region_fill() to help with clearing combined Z/stencil buffers, glColorMask, etc.
2007-08-01s/Z24_S8/S8_Z24/Brian
2007-08-01s/Z24_S8/S8_Z24/ (stencil is in the high byte)Brian
2007-08-01Checkpoint: glClear changes - working, bug very rough.Brian
2007-08-01Build libsoftpipe.aKeith 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-08-01Remove unused file intel_render.cKeith Whitwell
2007-08-01Remove unused fileKeith Whitwell
2007-08-01Remove intel_span.[ch]Keith Whitwell
2007-07-31sp_z_surface.h is deadBrian
2007-07-31Obsolete.Brian
2007-07-31Redesign 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-31Lift 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-31re-fix stencil addressing bugBrian