summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* remove st_draw.h includeBrian2007-08-021-2/+0
|
* setup more state for clear_with_quad()Brian2007-08-021-18/+31
|
* Merge branch 'softpipe_0_1_branch' of ↵Brian2007-08-027-36/+11
|\ | | | | | | git+ssh://[email protected]/git/mesa/mesa into softpipe_0_1_branch
| * Remove all references to swrast.Keith Whitwell2007-08-025-33/+9
| | | | | | | | | | | | 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.
| * Fix make recursion.Keith Whitwell2007-08-022-3/+2
| | | | | | | | Unfortunately means you can't just type make in softpipe any more.
* | get rid of accum paramBrian2007-08-021-2/+1
|/
* added clear-scissor.cBrian2007-08-021-0/+1
|
* test glClear w/ scissorBrian2007-08-021-0/+118
|
* Implement new draw_vertices() path for simple vertex array drawing, use it ↵Brian2007-08-025-12/+146
| | | | for glClear.
* Remove references to accum buffers in softpipe.Keith Whitwell2007-08-026-23/+17
| | | | Also some minor clear fixes.
* Remove intel_state.c, intel_rotate.[ch]Keith Whitwell2007-08-027-603/+0
|
* New header file.Brian2007-08-021-0/+37
|
* include st_cb_clear.hBrian2007-08-021-0/+1
|
* sketch out clearing with quadsBrian2007-08-021-5/+79
|
* add PIPE_MASK_RGBABrian2007-08-021-0/+2
|
* comment follow-upBrian2007-08-021-0/+1
|
* Merge branch 'softpipe_0_1_branch' of ↵Brian2007-08-0218-470/+125
|\ | | | | | | git+ssh://[email protected]/git/mesa/mesa into softpipe_0_1_branch
| * Remove intelClear() hack.Keith Whitwell2007-08-024-31/+4
| | | | | | | | | | | | 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.
| * Remove remnants of i915 texture-from-pbo code.Keith Whitwell2007-08-028-264/+3
| |
| * Reroute some clear functionality.Keith Whitwell2007-08-028-182/+125
| | | | | | | | | | Still require the intelClear() call to flush batchbuffers. That will be removed later...
* | implement masking in sp_region_fill()Brian2007-08-011-11/+48
|/
* rearrange things in xmesa_clear() a bitBrian2007-08-011-3/+6
|
* get cliprect bounds after softpipe_update_derived()Brian2007-08-011-4/+9
|
* Re-implement intelClear() in terms of softpipe_clear(). Pretty simple/small ↵Brian2007-08-014-12/+62
| | | | | | | now. Note: softpipe_clear() should really be renamed to something like pipe_clear_with_blits() and put into a driver-indepedent module...
* More work on glClear.Brian2007-08-016-50/+111
| | | | Add a 'mask' param to region_fill() to help with clearing combined Z/stencil buffers, glColorMask, etc.
* s/Z24_S8/S8_Z24/Brian2007-08-011-5/+5
|
* s/Z24_S8/S8_Z24/ (stencil is in the high byte)Brian2007-08-015-33/+36
|
* Checkpoint: glClear changes - working, bug very rough.Brian2007-08-0111-22/+213
|
* Build libsoftpipe.aKeith Whitwell2007-08-0110-33/+114
| | | | | | | | 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.
* Remove unused file intel_render.cKeith Whitwell2007-08-011-244/+0
|
* Remove unused fileKeith Whitwell2007-08-011-132/+0
|
* Remove intel_span.[ch]Keith Whitwell2007-08-017-449/+4
|
* sp_z_surface.h is deadBrian2007-07-311-1/+0
|
* Obsolete.Brian2007-07-312-250/+0
|
* Redesign pipe_surface in terms of pipe_region.Brian2007-07-3115-270/+538
| | | | | | struct pipe_buffer goes away. Added basic region functions to softpipe to allocate/release malloc'd regions. Surface-related code is fairly coherent now.
* Lift region-related functions up to the pipe interface.Brian2007-07-3127-287/+342
| | | | | | 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
* re-fix stencil addressing bugBrian2007-07-311-14/+3
|
* Add missing filesKeith Whitwell2007-07-314-0/+1926
|
* Remove references to intel_tris.hKeith Whitwell2007-07-313-3/+0
|
* Build the "pipe" version of the i915tex driver.Keith Whitwell2007-07-311-1/+1
| | | | This hands all rendering off to the softpipe rasterizer.
* A version of the i915tex driver with all drawing code removed.Keith Whitwell2007-07-3143-0/+10904
| | | | | | This is intended to support the softpipe development work. More code will be removed and pushed into softpipe until this basicially becomes the DRI/GLX interface for that driver.
* simplify clear.x1,y2,x2,y2 setupBrian2007-07-311-12/+4
|
* In i915/i830_emit_state(), check if state->draw_region is non-null.Brian2007-07-312-14/+16
| | | | This fixes a problem hit by glClear in the samples/stencil.c program.
* fix stencil addressing bugBrian2007-07-311-4/+6
|
* remove obsolete xmesa_get_stencil_surface() stubBrian2007-07-311-11/+0
|
* fix comments and param names for intel_miptree_image_map()Brian2007-07-312-3/+4
|
* fix value returned by intel_new_renderbuffer_fb()Brian2007-07-311-1/+1
|
* fix assertionsBrian2007-07-311-2/+2
|
* Merge branch 'i915tex_privbuffers' into softpipe_0_1_branchKeith Whitwell2007-07-3128-1177/+468
|\ | | | | | | | | | | | | | | | | Conflicts: src/mesa/drivers/dri/i915tex/intel_buffers.c src/mesa/drivers/dri/i915tex/intel_context.c src/mesa/drivers/dri/i915tex/intel_fbo.c src/mesa/drivers/dri/i915tex/intel_pixel_draw.c
| * fix range reduction for sin/cos in i915tex (#11609)Roland Scheidegger2007-07-292-10/+4
| |