02061d74c2
(as received from Jonas Echterhoff)
9 lines
331 B
C
Executable File
9 lines
331 B
C
Executable File
#ifndef S3DECOMPRESSION_H
|
|
#define S3DECOMPRESSION_H
|
|
|
|
void DecompressDXT1(int width, int height, UInt32* m_pCompBytes, UInt32* m_pDecompBytes);
|
|
void DecompressDXT3(int width, int height, UInt32* m_pCompBytes, UInt32* m_pDecompBytes);
|
|
void DecompressDXT5(int width, int height, UInt32* m_pCompBytes, UInt32* m_pDecompBytes);
|
|
|
|
#endif
|