Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: comments for _mesa_generate_mipmap_level() | Brian Paul | 2009-05-18 | 1 | -0/+3 |
| | |||||
* | fix ugly copy/paste error in mipmap generation code | Roland Scheidegger | 2009-03-31 | 1 | -1/+1 |
| | |||||
* | mesa: add new signed rgba texture format | Roland Scheidegger | 2009-03-28 | 1 | -11/+100 |
| | | | | | This is a (partial) backport of the signed texture format support in OGL 3.1. Since it wasn't promoted from an existing extension roll our own. | ||||
* | mesa: update/fix doxygen comments | Vinson Lee | 2009-03-17 | 1 | -1/+1 |
| | |||||
* | mesa: add support for ATI_envmap_bumpmap | Roland Scheidegger | 2009-03-12 | 1 | -2/+12 |
| | | | | | | | | add new entrypoints, new texture format, etc translate in texenvprogram.c for drivers using the mesa-generated tex env fragment program also handled in swrast, but not tested (cannot work due to negative texel results not handled correctly) | ||||
* | mesa: Fix the size per pixel for packed pixel format data type. | Xiang, Haihao | 2009-01-06 | 1 | -1/+5 |
| | |||||
* | Add do_row_3d for mipmapping 3D textures | Ian Romanick | 2008-12-19 | 1 | -21/+444 |
| | | | | | | | | | | | | Previously 3D textures were mipmapped using multiple passed through the 2D mipmap generation code. This had 3 disadvantages. First, the extra passes were slow. Second, this required the allocation of a temporary buffer to hold intermediate data. Third, and most important, the extra passes caused loss of additional bits due to integer division / bit-shifting. With this change, our mipmapgen conformance test passes for non-compressed texture formats. | ||||
* | Fix typeo in mipmap filter for GL_UNSIGNED_SHORT_1_5_5_5_REV | Ian Romanick | 2008-12-19 | 1 | -1/+1 |
| | |||||
* | mesa: Apply MSVC portability fixes from Alan Hourihane. | José Fonseca | 2008-09-23 | 1 | -1/+1 |
| | |||||
* | code refactoring, new next_mipmap_level_size() function | Brian | 2008-09-21 | 1 | -26/+51 |
| | | | | (cherry picked from commit c22d9152e33792ea58426c53bc9b96bf552b0b44) | ||||
* | refactor code, export _mesa_generate_mipmap_level() | Brian | 2008-09-21 | 1 | -47/+70 |
| | |||||
* | move _mesa_format_to_type_and_comps() to texformat.c | Brian | 2008-09-21 | 1 | -167/+1 |
| | | | | (cherry picked from commit 42eac65da45fb58bffdf94ab8f9860d8cee5b256) | ||||
* | mesa: pull in mipmap.c changes from gallium-0.2 | Keith Whitwell | 2008-09-21 | 1 | -438/+523 |
| | |||||
* | Remove unused texunit parameter to ctx->Driver.GenerateMipmap() | Brian | 2008-05-09 | 1 | -1/+0 |
| | | | | (cherry picked from commit c3395f4473c8fdf75d04c0dd72e687bc8d8127a7) | ||||
* | [intel] Fix and reenable (software) SGIS_generate_mipmap | Eric Anholt | 2007-12-20 | 1 | -39/+45 |
| | | | | | | | The core problem was that _mesa_generate_mipmap was not respecting RowStride of the source image. Additionally, the intel private data associated with the images (level and face) was not being initialized for the _mesa_generate_mipmap-generated images. | ||||
* | some fixes for compressed cube maps (bug 11986) | Brian | 2007-08-18 | 1 | -3/+4 |
| | |||||
* | make srcPtr param to make_1d_stack_mipmap() const | Brian | 2007-05-17 | 1 | -1/+1 |
| | |||||
* | Initial implementation of MESA_texture_array | Ian Romanick | 2007-05-16 | 1 | -3/+145 |
| | | | | | Shadow sampling from texture arrays is still not implemented. Everything else should be there, though. | ||||
* | fix mem leak | Panagiotis Papadakos | 2007-02-05 | 1 | -0/+3 |
| | |||||
* | update _mesa_select_tex_image() and _mesa_get_tex_image() | Brian Paul | 2006-11-01 | 1 | -2/+2 |
| | |||||
* | Move mipmap generation functions, texture scaling functions into new | Brian Paul | 2006-09-29 | 1 | -0/+1147 |
mipmap.c file. |