Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | nv30: Move some structures and functions from context to screen | Patrice Mandin | 2008-04-11 | 6 | -226/+303 |
| | |||||
* | nv30: Do flip | Patrice Mandin | 2008-04-11 | 1 | -2/+14 |
| | |||||
* | nv30: Set pipe status on clear | Patrice Mandin | 2008-04-11 | 1 | -0/+1 |
| | |||||
* | nv40: use vb/ve counts rather than shader inputs for related loops | Ben Skeggs | 2008-04-09 | 2 | -28/+6 |
| | |||||
* | Merge remote branch 'upstream/gallium-0.1' into nouveau-gallium-0.1 | Ben Skeggs | 2008-04-09 | 42 | -1079/+1424 |
|\ | |||||
| * | cell: keep track of num_vertex_attribs/buffers for shorter loops | Brian | 2008-04-08 | 3 | -13/+13 |
| | | |||||
| * | i915: keep track of num_vertex_attribs/buffers for shorter loops | Brian | 2008-04-08 | 3 | -13/+14 |
| | | |||||
| * | gallium: keep track of num_vertex_attribs/buffers for shorter loops | Brian | 2008-04-08 | 3 | -13/+13 |
| | | |||||
| * | gallium: Fix overzealous assert. | José Fonseca | 2008-04-08 | 1 | -1/+5 |
| | | |||||
| * | gallium: get rid of bufloop quad stage | Brian | 2008-04-07 | 5 | -6/+0 |
| | | |||||
| * | gallium: begin reworking quad stages for multiple color outputs | Brian | 2008-04-07 | 11 | -671/+734 |
| | | |||||
| * | gallium: Allow to debug memory leaks in nested scopes. | José Fonseca | 2008-04-08 | 2 | -11/+11 |
| | | |||||
| * | draw: strip edgeflags out of fetch-emit path | Keith Whitwell | 2008-04-07 | 1 | -1/+1 |
| | | |||||
| * | draw: fix edgeflag handling on the pt paths | Keith Whitwell | 2008-04-06 | 4 | -175/+253 |
| | | | | | | | | | | | | | | | | | | Encode edgeflags (and reset_stipple info) into the top two bits of the fetch elements. This info could be moved elsewhere, but for now we can live with a 1<<30 maximum element size... Also use the primitive decomposition code from draw_prim.c verbatim, as it includes all this stuff and is known to work. | ||||
| * | draw: Use debug_printf(). | Michal Krol | 2008-04-05 | 1 | -2/+2 |
| | | |||||
| * | gallium: Keep fenced buffers list ordered. | José Fonseca | 2008-04-05 | 1 | -53/+99 |
| | | | | | | | | This allows to keep the list small without the overhead of full walks. | ||||
| * | gallium: Fix typo. | José Fonseca | 2008-04-05 | 1 | -1/+1 |
| | | |||||
| * | gallium: Use the custom snprintf implementation everywhere (for Win32). | José Fonseca | 2008-04-05 | 2 | -8/+12 |
| | | | | | | | | Because winddk's implemenation does not handle floats. | ||||
| * | gallium: new debug code, disabled | Brian Paul | 2008-04-04 | 1 | -0/+15 |
| | | |||||
| * | gallium: Handle client-supplied edgeflags. | Keith Whitwell | 2008-04-04 | 7 | -28/+71 |
| | | | | | | | | | | | | | | | | Also, implement support in the draw module. We were hardwiring these to one for quite a long time... Currently using a draw_set_edgeflags() function, may be better to push the argument into the draw_arrays() function. TBD. | ||||
| * | draw: move code to run pipeline from pt to new file | Keith Whitwell | 2008-04-04 | 6 | -99/+196 |
| | | | | | | | | | | Add facility for draw_vbuf.c to reset these vertex ids on flushes. Pre-initialize vertex ids correctly. | ||||
| * | gallium: fix two-side stencil handling | Roland Scheidegger | 2008-04-04 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | Previously all drivers were in twosided mode since they checked for stencil.enable[1] flag which was a copy of stencil.enable[0]. Note that drivers should not reference stencil[1] state (other than the enable) if twosided stenciling is disabled (for now the stencil state is still copied but for instance clear_with_quads won't provide useful values in there). Also, use _TestTwoSide instead of TestTwoSide since results would be bogus otherwise if using APIs with implicit two side stencil enable (i.e. core ogl 2.0). | ||||
* | | nv40: implement user clip planes | Ben Skeggs | 2008-04-07 | 7 | -112/+87 |
| | | | | | | | | | | | | | | | | | | It turns out the user planes handed to the driver are already in clip space. Hence, we no longer need to transform incoming vertices before computing the clip distance, and no longer need to change the interface provided by gallium. Yay :) The clip state change handling could be better, but this works. | ||||
* | | nv40: kill some warnings | Ben Skeggs | 2008-04-04 | 1 | -2/+0 |
| | | |||||
* | | Merge remote branch 'upstream/gallium-0.1' into nouveau-gallium-0.1 | Ben Skeggs | 2008-04-04 | 16 | -116/+600 |
|\| | |||||
| * | gallium: make msvc less unhappy | Keith Whitwell | 2008-04-04 | 1 | -7/+8 |
| | | |||||
| * | cell: added some comments/ideas about better texture sampling | Brian | 2008-04-03 | 1 | -1/+17 |
| | | |||||
| * | cell: minor texture improvements | Brian | 2008-04-03 | 3 | -11/+26 |
| | | | | | | | | Precompute tiles_per_row. Use ushort multiplies in a few places. New comments. | ||||
| * | gallium: implement ycbcr->rgba tile conversion | Brian | 2008-04-03 | 1 | -0/+71 |
| | | |||||
| * | gallium: Only build softpipe driver by default for xlib winsys with scons. | Michel Dänzer | 2008-04-03 | 1 | -2/+0 |
| | | |||||
| * | draw: add passthrough path to the pipeline | Keith Whitwell | 2008-04-03 | 8 | -67/+424 |
| | | | | | | | | | | | | | | This handles the case where bypass_vs is set, but vertices need to go through the pipeline for some reason - eg unfilled polygon mode. Demonstrates how to drive the pipeline from inside one of these things. | ||||
| * | draw: add missing break statement | Keith Whitwell | 2008-04-02 | 1 | -0/+1 |
| | | |||||
| * | draw: Set the backend prim in the pt 'prepare' operation | Keith Whitwell | 2008-04-02 | 4 | -28/+31 |
| | | | | | | | | | | | | | | Leaving it until 'run' is bad as the primitive is pretty much state for some drivers and so needs to get set early. In some drivers this is used to determine things like vertex format, etc -- by the time we get to 'run', it's too late to change this. | ||||
| * | gallium: add a flag to turn on gl rasterization rules | Keith Whitwell | 2008-04-02 | 2 | -6/+14 |
| | | | | | | | | | | | | | | Use this to set up hardware rasterization (if your hardware can do it) or otherwise turn on various tweaks in the draw module. Currently only hooked up to point biasing code. | ||||
| * | gallium: add temporary facility for rasterization-time clamping of point sizes | Keith Whitwell | 2008-04-02 | 2 | -1/+15 |
| | | |||||
* | | nouveau: create swizzled surface + scaled image objects | Ben Skeggs | 2008-04-04 | 3 | -1/+56 |
| | | |||||
* | | nv40: have test for hw idxbuf in single place | Ben Skeggs | 2008-04-04 | 1 | -2/+2 |
| | | |||||
* | | nouveau: in some cases don't create the buffer in local mem initially. | Ben Skeggs | 2008-04-04 | 10 | -4/+62 |
| | | |||||
* | | nv40: remove redundant state_emit() calls | Ben Skeggs | 2008-04-04 | 1 | -3/+0 |
| | | |||||
* | | nv40: static attribs -> stateobj | Ben Skeggs | 2008-04-04 | 3 | -30/+38 |
| | | |||||
* | | nv40: convert the inline idxbuf paths also | Ben Skeggs | 2008-04-04 | 1 | -48/+111 |
| | | |||||
* | | nv40: need to resubmit buffers if pushbuf gets flushed during draw | Ben Skeggs | 2008-04-04 | 2 | -44/+140 |
| | | |||||
* | | nv10: emit dummy zeta size when no zbuffer is used. | Stephane Marchesin | 2008-04-03 | 1 | -1/+1 |
| | | |||||
* | | nv10: fix more vertex stuff | Stephane Marchesin | 2008-04-03 | 4 | -8/+25 |
| | | |||||
* | | don't push "pouets" | Stephane Marchesin | 2008-04-02 | 1 | -2/+0 |
| | | |||||
* | | nv10: fix some more state, work on the vertex emission code. | Stephane Marchesin | 2008-04-02 | 7 | -67/+68 |
| | | |||||
* | | nv10: set rasterizer state. | Stephane Marchesin | 2008-04-02 | 2 | -0/+6 |
| | | |||||
* | | Merge remote branch 'upstream/gallium-0.1' into nouveau-gallium-0.1 | Ben Skeggs | 2008-04-02 | 11 | -66/+85 |
|\| | |||||
| * | cell: more multi-texture fixes (mostly working now) | Brian | 2008-04-01 | 4 | -16/+17 |
| | | |||||
| * | cell: turn off some debug output | Brian | 2008-04-01 | 1 | -1/+1 |
| | |