Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | util: promote u_memory to src/util | Dylan Baker | 2018-11-27 | 1 | -1/+1 |
| | | | | | as well as os_memory* Reviewed-by: Rob Clark <[email protected]> | ||||
* | gallium: remove pipe_index_buffer and set_index_buffer | Marek Olšák | 2017-05-10 | 1 | -29/+25 |
| | | | | | | | | | | | | | | pipe_draw_info::indexed is replaced with index_size. index_size == 0 means non-indexed. Instead of pipe_index_buffer::offset, pipe_draw_info::start is used. For indexed indirect draws, pipe_draw_info::start is added to the indirect start. This is the only case when "start" affects indirect draws. pipe_draw_info::index is a union. Use either index::resource or index::user depending on the value of pipe_draw_info::has_user_indices. v2: fixes for nine, svga | ||||
* | gallium/util: correctly unref a buffer in u_prim_restart | Marek Olšák | 2017-02-18 | 1 | -1/+1 |
| | | | | Reviewed-by: Nicolai Hähnle <[email protected]> | ||||
* | util: add a couple primitive restart helper functions | Brian Paul | 2015-09-01 | 1 | -0/+267 |
The first function translates prim restart indexes to be 0xffff or 0xffffffff. The second splits indexed primitives with restart indexes into sub- primitives without restart indexes. Reviewed-by: Roland Scheidegger <[email protected]> |