aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/pipe/failover
Commit message (Collapse)AuthorAgeFilesLines
* Make sampler an immutable state object.Zack Rusin2007-09-183-7/+7
| | | | Switch the sample to be an immutable state object.
* First stab at immutable state objects (create/bind/delete)Zack Rusin2007-09-183-6/+8
| | | | | | | We want our state objects to be immutable, handled via the create/bind/delete calls instead of struct propagation. Only implementing the blend state to see how it would look like and work.
* Remove non-meaningful region_idle() interfaceKeith Whitwell2007-09-171-1/+0
| | | | This is already handled by the semanics of map(), etc.
* Implement query object interface.Brian2007-09-111-2/+2
| | | | | | This replaces the temporary occlusion counter functions we had before. Added new ctx->Driver.WaitQuery() function which should block until the result is ready. Sketch out some code for vertex transformation feedback counters.
* Clear all the dirtyflag wordsKeith Whitwell2007-08-221-0/+4
|
* fix cut and pastekeithw2007-08-211-18/+24
|
* First pass at a fallback concept for pipe devices.Keith Whitwell2007-08-216-0/+752
Creates a new pipe driver that feeds commands to either a hardware or software pipe depending on fallback state. Untested concept checkpoint. At this point it compiles.