You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
603 B
20 lines
603 B
3 years ago
|
#ifndef _GL4ES_DECOMPRESS_H_
|
||
|
#define _GL4ES_DECOMPRESS_H_
|
||
|
|
||
|
void DecompressBlockDXT1(uint32_t x, uint32_t y, uint32_t width,
|
||
|
const uint8_t* blockStorage,
|
||
|
int transparent0, int* simpleAlpha, int *complexAlpha,
|
||
|
uint32_t* image);
|
||
|
|
||
|
void DecompressBlockDXT3(uint32_t x, uint32_t y, uint32_t width,
|
||
|
const uint8_t* blockStorage,
|
||
|
int transparent0, int* simpleAlpha, int *complexAlpha,
|
||
|
uint32_t* image);
|
||
|
|
||
|
void DecompressBlockDXT5(uint32_t x, uint32_t y, uint32_t width,
|
||
|
const uint8_t* blockStorage,
|
||
|
int transparent0, int* simpleAlpha, int *complexAlpha,
|
||
|
uint32_t* image);
|
||
|
|
||
|
#endif // _GL4ES_DECOMPRESS_H_
|