summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965/brw_wm.c
AgeCommit message (Collapse)Author
2010-02-05i965g: Remove unnecessary headers.Vinson Lee
2009-12-21i965g: fixes to build after merge of masterKeith Whitwell
2009-11-21i965g: get basic texturing working againKeith Whitwell
Revert to fixed-layout surface binding table -- it's probably the best way to do this. Pass sampler and texture numbers separately even though we're always keeping them the same at present.
2009-11-14i965g: restore check on line smooth stateKeith Whitwell
2009-11-06i965g: propogate nr_cbufs into wm prog keyKeith Whitwell
2009-11-06i965g: don't set up vs stack register for non-branching shadersKeith Whitwell
2009-11-05i965g: add lots of error checks and early returnsKeith Whitwell
Any allocation that may fail should be checked, and propogate the error upwards. At the highest level we will flush batch and retry. This is an alternate strategy to what the original DRI driver did of attempting to flush batch from the lowest levels (eg inside BEGIN_BATCH). The trouble with that strategy was that flushes could occur at unexpected times, and additionally there was a need for a wierd notification mechanism to propogate the 'lost context' state back up to higher levels. Propogating the errors directly gives us a lot of flexibility how to deal with these states, at the expense of a lot more checking in the code. Will add some sanity checks later to make sure that out-of-memory conditions are properly escalated and not lost halfway up the stack.
2009-11-04i965g: consolidate some includesKeith Whitwell
2009-11-04i965g: hook up pipe sampler callbacksKeith Whitwell
2009-10-31i965g: non-glsl fragment shader path is compilingKeith Whitwell
Disabled glsl code for now, probably want to clean this up somehow.
2009-10-29i965g: work in progress on fragment shadersKeith Whitwell
2009-10-28i965g: still working on compilationKeith Whitwell
2009-10-26i965g: still working on compilationKeith Whitwell
2009-10-25i965g: more compiling wipKeith Whitwell
2009-10-25i965g: more work on compiling, particularly the brw_draw filesKeith Whitwell
2009-10-24i965g: more work on compilingKeith Whitwell
2009-10-23i965g: wip on removing GL stuff, trying to get a few files compilingKeith Whitwell
2009-10-23i965g: wipKeith Whitwell
2009-10-23i965g: re-starting from the dri driverKeith Whitwell