summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/r300/r300_tex.c
Commit message (Collapse)AuthorAgeFilesLines
* r300: Added some Doxygen comments.Christoph Bill2007-05-091-1/+1
|
* r300: Indented r300_tex.[ch].Oliver McFadden2007-05-091-147/+157
|
* r300: Removed some disabled R200 code from the R300 driver.Oliver McFadden2007-05-091-2/+0
|
* r300: Removed some obsolete code from r300_tex.c.Oliver McFadden2007-05-091-22/+0
|
* r300: Removed the deprecated $XFree86$ CVS keywords.Oliver McFadden2007-03-181-1/+0
|
* try to use a 8888 texture format which will result in only a memcopy in ↵Roland Scheidegger2006-09-201-4/+36
| | | | mesa's texstore functions whenever possible for r200 and r300. r200 can use hw formats argb8888, rgba8888 and abgr8888 (or the opposite on big endian), r300 can use argb8888, bgra8888, rgba8888 and abgr8888 regardless of endian, as it supports free component swizzling.
* FP textures and fixes (Ewald Snel)Brian Paul2006-03-291-0/+25
|
* Clean build.Aapo Tahkola2006-03-131-3/+0
|
* Fix a problem where offsets from disabled tmus reach drmAapo Tahkola2006-01-261-0/+3
|
* No you arent.Aapo Tahkola2005-12-171-15/+0
|
* GC a bit of dead code I noticed while looking at texwrap.Eric Anholt2005-10-281-7/+0
|
* Reduce stderr noise and fix some compiler warnings.Aapo Tahkola2005-10-261-23/+0
|
* fixes for r300_tex.c from Aapo TahkolaDave Airlie2005-10-201-4/+4
|
* Add support for texture compression to R300 driverDave Airlie2005-09-251-0/+128
| | | | | This isn't perfect, texcmp still has some issues with the small textures.. but its a good start
* Another nasty struct size bug found.Aapo Tahkola2005-02-241-1/+1
|
* Minor fix to border and blend color.Aapo Tahkola2005-02-191-1/+1
|
* Fixing *lots* of warning messages, especially concerning unportableNicolai Haehnle2005-02-171-21/+21
| | | | | | | whitespace before preprocessor commands. Please, can you try to keep the warnings down? Try running make with make -s sometime to see just how bad an offender the current code is.
* Turns out unknown5 was border color. texwrap looks good now.Aapo Tahkola2005-02-101-1/+1
|
* Typo..Aapo Tahkola2005-02-081-1/+1
|
* Fix the bug and get zbias back into shape. There might still be some ↵Aapo Tahkola2005-02-081-0/+1
| | | | problems with initial zbias...
* Get alpha in textures to work properly.Vladimir Dergachev2005-02-011-2/+4
|
* Fixes for clamp modes.Aapo Tahkola2005-01-251-1/+1
|
* On the way to getting stencil and texture formats working.Vladimir Dergachev2005-01-151-0/+7
| | | | | Looks like the matter of texture formats is a lot simpler, with the wrong display in quake explained by the fact that we are not handling texture combine modes.
* Added fixes for filter modes and support for anisotropy filters.Aapo Tahkola2005-01-141-61/+46
| | | | | | Wrap modes would work perfectly but i messed up something when cleaning up the code :/ Border color code is incomplete because i forgot to check how to set border size :)
* Mipmapping and other texture filters now work.Aapo Tahkola2005-01-111-34/+45
| | | | | | | | | | Beaware that R300_TX_MIN_FILTER_MASK might be incorrect because i havent been able to confirm that all filters operate correctly. Because of this its also pretty pointless trying to get other features that use filter field to work. Lod bias should also work but have been unable to test it because lodbias test doesnt work.
* Play a little bit with texture formats.Vladimir Dergachev2005-01-051-1/+1
| | | | Get NeHe demos 06, 07 and 19 working.
* Enable code to compute other constants that were used by R200 code.Vladimir Dergachev2005-01-031-23/+13
| | | | | Add fprintf to print these constants. Correct t->size computation, so it works now.
* Port texture allocation code from R200.Vladimir Dergachev2005-01-031-0/+1055
Hook it up, so lesson06 displays red colored textures.