DXTC Native Decoding Support

This commit is contained in:
Ishotihadus
2018-05-27 02:45:23 +09:00
parent 4b577b0644
commit a7f748bbb5
5 changed files with 139 additions and 112 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef DXTC_H
#define DXTC_H
#include <stdint.h>
void decode_dxt1(const uint64_t*, const int, const int, uint32_t*);
void decode_dxt5(const uint64_t*, const int, const int, uint32_t*);
#endif /* end of include guard: DXTC_H */