Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: remove #include "mfeatures.h" from numerous source files | Brian Paul | 2013-04-17 | 1 | -1/+0 |
| | | | | | | None of the remaining FEATURE_x symbols in mfeatures.h are used anymore. Reviewed-by: Jordan Justen <[email protected]> | ||||
* | mesa: remove old swrast-based compressed texel fetch code | Brian Paul | 2012-12-14 | 1 | -34/+0 |
| | |||||
* | mesa: add new texel fetch code for rgtc formats | Brian Paul | 2012-12-14 | 1 | -0/+5 |
| | |||||
* | mesa/swrast: fix GL_TEXTURE_2D_ARRAY texture fetches for latc/rgtc formats | Brian Paul | 2012-08-24 | 1 | -16/+16 |
| | | | | | | | Fix-up the texel fetch functions so that they handle 3D coords (as used for array textures) and remove the "f_2d" part from their names. Helps fix swrast crashes in piglit's copyteximage test. More to come. | ||||
* | mesa: move gl_texture_image::FetchTexel fields to swrast | Brian Paul | 2011-09-17 | 1 | -9/+9 |
| | | | | | This also involves passing swrast_texture_image instead of gl_texture_image into all the fetch functions. | ||||
* | mesa: add EXT_texture_compression_latc | Marek Olšák | 2011-03-08 | 1 | -0/+17 |
| | | | | | | | | | | | | | | | | | The encoding/decoding algorithms are shared with RGTC. Thanks to some magic with the base format, the RGTC texstore functions work for LATC too. swrast passes the related piglit tests besides two things: - The alpha channel is wrong (it's always 1), however the incorrect alpha channel makes some other tests fail too, so I guess it's unrelated to LATC. - Signed LATC fetches aren't correct yet (signed values are clamped to [0,1]), however RGTC has the same problem. Further testing (with other of my patches) shows that hardware drivers and softpipe work. BTW, ETQW uses this extension. | ||||
* | mesa: Add RGTC texture store/fetch support. | Dave Airlie | 2011-02-28 | 1 | -0/+60 |
This adds support for the RGTC unsigned and signed texture storage and fetch methods. the code is a port of the DXT5 alpha compression code. Signed-off-by: Dave Airlie <[email protected]> |