Name Date Size #Lines LOC

..12-Feb-2024-

ChangeLogH A D12-Feb-20241.8 KiB5341

DoxyfileH A D12-Feb-20248.4 KiB224222

MakefileH A D12-Feb-2024560 3218

READMEH A D12-Feb-20241.5 KiB3626

alpha.cppH A D12-Feb-20248 KiB349235

alpha.hH A D12-Feb-20241.7 KiB4210

clusterfit.cppH A D12-Feb-202412.2 KiB394252

clusterfit.hH A D12-Feb-20242 KiB6226

colourblock.cppH A D12-Feb-20245.3 KiB215132

colourblock.hH A D12-Feb-20241.7 KiB4210

colourfit.cppH A D12-Feb-20241.7 KiB5121

colourfit.hH A D12-Feb-20241.7 KiB5419

colourset.cppH A D12-Feb-20243.5 KiB12267

colourset.hH A D12-Feb-20242 KiB5923

configH A D12-Feb-2024428 2317

config.hH A D12-Feb-20241.9 KiB5017

maths.cppH A D12-Feb-20245.8 KiB228148

maths.hH A D12-Feb-20244.5 KiB234173

rangefit.cppH A D12-Feb-20245.1 KiB203121

rangefit.hH A D12-Feb-20241.8 KiB5521

simd.hH A D12-Feb-20241.5 KiB4111

simd_float.hH A D12-Feb-20244.1 KiB184130

simd_sse.hH A D12-Feb-20245 KiB181114

simd_ve.hH A D12-Feb-20244.2 KiB167108

singlecolourfit.cppH A D12-Feb-20244.5 KiB174101

singlecolourfit.hH A D12-Feb-20241.9 KiB5924

singlecolourlookup.inlH A D12-Feb-202438.4 KiB1,0411,036

squish.cppH A D12-Feb-20246.7 KiB240146

squish.hH A D12-Feb-202410.2 KiB24824

texture_compression_s3tc.txtH A D12-Feb-202421.8 KiB509357

README

1LICENSE
2-------
3
4The squish library is distributed under the terms and conditions of the MIT
5license. This license is specified at the top of each source file and must be
6preserved in its entirety.
7
8BUILDING AND INSTALLING THE LIBRARY
9-----------------------------------
10
11If you are using Visual Studio 2003 or above under Windows then load the Visual
12Studio 2003 project in the vs7 folder. By default, the library is built using
13SSE2 optimisations. To change this either change or remove the SQUISH_USE_SSE=2
14from the preprocessor symbols.
15
16If you are using a Mac then load the Xcode 2.2 project in the distribution. By
17default, the library is built using Altivec optimisations. To change this
18either change or remove SQUISH_USE_ALTIVEC=1 from the preprocessor symbols. I
19guess I'll have to think about changing this for the new Intel Macs that are
20rolling out...
21
22If you are using unix then first edit the config file in the base directory of
23the distribution, enabling Altivec or SSE with the USE_ALTIVEC or USE_SSE
24variables, and editing the optimisation flags passed to the C++ compiler if
25necessary. Then make can be used to build the library, and make install (from
26the superuser account) can be used to install (into /usr/local by default).
27
28REPORTING BUGS OR FEATURE REQUESTS
29----------------------------------
30
31Feedback can be sent to Simon Brown (the developer) at [email protected]
32
33New releases are announced on the squish library homepage at
34http://sjbrown.co.uk/?code=squish
35
36