mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-04-01 01:51:46 -04:00
texturec: Fixed libsquish flags.
This commit is contained in:
parent
76e45fe53c
commit
4635a0ce81
1 changed files with 6 additions and 6 deletions
12
3rdparty/libsquish/squish.h
vendored
12
3rdparty/libsquish/squish.h
vendored
|
@ -53,17 +53,17 @@ enum
|
|||
//! Use BC5 compression.
|
||||
kBc5 = ( 1 << 4 ),
|
||||
|
||||
//! Use a very slow but very high quality colour compressor.
|
||||
kColourIterativeClusterFit = ( 1 << 8 ),
|
||||
|
||||
//! Use a slow but high quality colour compressor (the default).
|
||||
kColourClusterFit = ( 1 << 3 ),
|
||||
kColourClusterFit = ( 1 << 5 ),
|
||||
|
||||
//! Use a fast but low quality colour compressor.
|
||||
kColourRangeFit = ( 1 << 4 ),
|
||||
kColourRangeFit = ( 1 << 6 ),
|
||||
|
||||
//! Weight the colour by alpha during cluster fit (disabled by default).
|
||||
kWeightColourByAlpha = ( 1 << 7 )
|
||||
kWeightColourByAlpha = ( 1 << 7 ),
|
||||
|
||||
//! Use a very slow but very high quality colour compressor.
|
||||
kColourIterativeClusterFit = ( 1 << 8 ),
|
||||
};
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Reference in a new issue