Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gallium: additional fixes to ensure even number of vertices per buffer | Brian Paul | 2008-06-18 | 1 | -0/+3 |
| | |||||
* | draw: respect driver's max vertex buffer size | Keith Whitwell | 2008-06-04 | 1 | -1/+5 |
| | |||||
* | draw: add disabled debug code | Keith Whitwell | 2008-05-27 | 1 | -1/+14 |
| | |||||
* | draw: defensively flush pipeline backend when setting primitive | Keith Whitwell | 2008-05-26 | 1 | -0/+4 |
| | |||||
* | draw: defensively reset render primitive some more | Keith Whitwell | 2008-05-26 | 1 | -0/+8 |
| | |||||
* | draw: defensively reset render primitive, which can get clobbered by clipping | Keith Whitwell | 2008-05-26 | 1 | -1/+16 |
| | |||||
* | draw: add missing break | Keith Whitwell | 2008-05-26 | 1 | -0/+1 |
| | |||||
* | Merge commit 'origin/gallium-0.1' into gallium-vertex-linear | Zack Rusin | 2008-05-19 | 1 | -1/+1 |
|\ | |||||
| * | draw: Fix number of vertices allocated in draw_pt_emit(). | Michel Dänzer | 2008-05-09 | 1 | -1/+1 |
| | | |||||
| * | draw: mimize cost of translate key compares, use cache universally | Keith Whitwell | 2008-05-09 | 1 | -5/+5 |
| | | |||||
* | | draw: mimize cost of translate key compares, use cache universally | Keith Whitwell | 2008-05-12 | 1 | -5/+5 |
| | | |||||
* | | Merge branch 'gallium-0.1' into gallium-vertex-linear | Keith Whitwell | 2008-05-08 | 1 | -4/+4 |
|\| | |||||
| * | draw: only fill in / compare the part of the translate key we're using. | Keith Whitwell | 2008-05-08 | 1 | -4/+4 |
| | | | | | | | | | | It's quite a big struct & we examine it a lot (too much). Reduce the impact of this by just looking at the active part where possible. | ||||
* | | silence debugging output | Zack Rusin | 2008-05-08 | 1 | -1/+3 |
| | | |||||
* | | implement linear emition and fetching and plug it in the varray paths | Zack Rusin | 2008-05-08 | 1 | -0/+45 |
|/ | |||||
* | gallium: init hw_key with memset() to silence valgrind warnings | Brian Paul | 2008-04-29 | 1 | -0/+2 |
| | | | | We shouldn't be hashing with keys that have uninitialized memory. | ||||
* | Add translate cache to fetch_emit stage and add out of memory | Zack Rusin | 2008-04-23 | 1 | -0/+4 |
| | | | | checks to code creating the cache. | ||||
* | Create a sharable translate_cache and use it. | Zack Rusin | 2008-04-23 | 1 | -59/+6 |
| | |||||
* | fix the simple hash finding function and use it | Zack Rusin | 2008-04-23 | 1 | -8/+6 |
| | |||||
* | Cache translate's structs for emits and fetches. | Zack Rusin | 2008-04-22 | 1 | -6/+57 |
| | | | | Results in a fair speed improvement. | ||||
* | draw: remove draw_vf code, use translate instead | Keith Whitwell | 2008-04-18 | 1 | -2/+1 |
| | |||||
* | translate: add sse version based on old draw_vf_sse.c | Keith Whitwell | 2008-04-18 | 1 | -1/+1 |
| | |||||
* | draw: split off all the extra functionality in the vertex shader | Keith Whitwell | 2008-04-18 | 1 | -11/+5 |
| | | | | | | | | | | This will at least allow us to make the initial gains to get decent vertex performance much more quickly & with higher confidence of getting it right. At some later point can look again at code-generating all the fetch/cliptest/viewport extras in the same block as the vertex shader. For now, just need to get some decent baseline performance. | ||||
* | draw: move hw vertex emit to a new module | Keith Whitwell | 2008-04-17 | 1 | -0/+208 |