summaryrefslogtreecommitdiffstats
path: root/src/mesa
Commit message (Collapse)AuthorAgeFilesLines
* Add GLSL opcodes.michal2007-08-061-1/+10
|
* Add GLSL ops.michal2007-08-061-0/+36
|
* Make SGE, SGT, SLE working.michal2007-08-061-12/+32
|
* Remove garbage text.michal2007-08-061-1/+1
|
* Use fp_attr_to_slot[].michal2007-08-061-0/+11
|
* Reorder opcodes.michal2007-08-061-10/+10
|
* Translate the remaining ops.michal2007-08-061-30/+83
|
* Merge branch 'softpipe_0_1_branch' of ↵Brian2007-08-062-1/+28
|\ | | | | | | git+ssh://[email protected]/git/mesa/mesa into softpipe_0_1_branch
| * Translate MESA GLSL opcodes to TGSI opcodes.michal2007-08-062-1/+28
| |
* | added xm_softpipe.cBrian2007-08-061-0/+1
| |
* | use new xmesa_create_softpipe()Brian2007-08-062-1/+5
| |
* | softpipe/winsys interfaceBrian2007-08-061-0/+198
|/
* Add path for GL includes in mesa tree.michal2007-08-061-0/+1
|
* added st_cb_texture.cBrian2007-08-061-0/+1
|
* clean-upsBrian2007-08-061-4/+5
|
* switch to new texture functions in state trackerBrian2007-08-065-9/+43
|
* use new texture funcsBrian2007-08-061-3/+4
|
* clean-upsBrian2007-08-062-44/+68
|
* new texture functionsBrian2007-08-062-0/+1782
|
* commentsBrian2007-08-061-3/+3
|
* Add GLSL opcodes.michal2007-08-061-2/+57
|
* disable/remove intel dependenciesBrian2007-08-061-15/+33
|
* more intel_context removalBrian2007-08-062-10/+15
|
* disable some PBO code, remove intel dependenciesBrian2007-08-062-9/+67
|
* remove timing codeBrian2007-08-061-64/+1
|
* Replace intel_texture_object with st_texture_object, intel_texture_image ↵Brian2007-08-067-69/+69
| | | | with st_texture_image
* minor renamingBrian2007-08-062-5/+5
|
* Lift intel_mipmap_tree.c to st_mipmap_tree.cBrian2007-08-0611-8/+406
|
* More code movement, removal of intel dependenciesBrian2007-08-064-5/+30
|
* remove more intel dependenciesBrian2007-08-062-23/+31
|
* remove intel dependencies from intel_mipmap_tree.cBrian2007-08-068-69/+68
|
* checkpoint: move some texture layout codeBrian2007-08-063-65/+1
|
* Checkpoint lifting of intel_mipmap_tree (intel_mipmap_tree -> ↵Brian2007-08-0610-149/+485
| | | | pipe_mipmap_tree and move some code)
* 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.