Add dxt1a fast compressor.

Cleanup fast compressors, move them to QuickCompress.
This commit is contained in:
castano
2007-09-04 10:00:32 +00:00
parent da3a43ba2e
commit 0008199435
15 changed files with 376 additions and 43 deletions

View File

@ -46,6 +46,9 @@ namespace nv
// Compressor that uses bounding box.
void compressBlock_BoundsRange(const ColorBlock & rgba, BlockDXT1 * block);
// Compressor that uses bounding box and takes alpha into account.
void compressBlock_BoundsRangeAlpha(const ColorBlock & rgba, BlockDXT1 * block);
// Compressor that uses the best fit axis.
void compressBlock_BestFitAxis(const ColorBlock & rgba, BlockDXT1 * block);