summaryrefslogtreecommitdiffstats
path: root/src/mesa
Commit message (Collapse)AuthorAgeFilesLines
* Add pipe buffer managment functions.Keith Whitwell2007-08-0617-200/+520
| | | | | The state_tracker driver needs these to implement, eg. pixel buffer objects, vertex buffer objects.
* Add a new interface between softpipe and the window system / buffer manager.Keith Whitwell2007-08-0513-457/+493
| | | | | | | | | | | | | | | This interface is defined by softpipe and any window system (eg i915pipe) wishing to use softpipe is required to implement the interface. Currently the interface is all about buffer management. Generalizing, each pipe driver will advertise an interface in a similar spirit to this, and again any window system driver wishing to use that rendering pipeline will have to implement the interface it defines. It clearly isn't a one-way street however, as softpipe could just do its own buffer management with malloc. The interaction with a buffer manager is desired to allow us to exercise the hardware swapbuffers functionality of the i915pipe driver, and also to get a feel for the way hardware drivers which really need a buffer manager will work.
* remove intel_pixel.cBrian2007-08-031-1/+0
|
* added st_cb_fbo.cBrian2007-08-031-0/+1
|
* more work on st_choose_pipe_format()Brian2007-08-032-28/+110
|
* framebuffer object functionsBrian2007-08-032-0/+381
|
* Remove dead filesKeith Whitwell2007-08-034-103/+0
|
* Rip out more dead drawing-related code.Keith Whitwell2007-08-037-214/+90
|
* Remove "static region" support.Keith Whitwell2007-08-032-75/+0
| | | | | The frontbuffer/driBufMgr interactions are handled as a special case in the intel_screen code.
* Simplify frontbuffer / sarea / rotation management.Keith Whitwell2007-08-037-253/+97
| | | | Remove lots of old cruft.
* Workaround wierd oops on gutsy when building mesa.Keith Whitwell2007-08-031-1/+2
|
* added pipe->supported_formats()Brian2007-08-022-0/+42
|
* hook in teximage bitsBrian2007-08-022-1/+10
|
* more formatsBrian2007-08-021-15/+19
|
* trim #includesBrian2007-08-022-4/+0
|
* beginings of teximage functionsBrian2007-08-022-0/+303
|
* pipe->clear() now takes a surface, rather than color/depth/stencil flags.Brian2007-08-027-158/+270
| | | | | pipe->clear() only used to clear whole buffers (no scissor) w/out masking. Draw a colored quadrilateral in all other cases.
* call st_init_cb_drawpixelsBrian2007-08-021-0/+2
|
* added st_cb_drawpixels.cBrian2007-08-021-0/+1
|
* initial work for textured-quad glDrawPixelsBrian2007-08-022-0/+316
|
* 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
|/
* 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
|