ETC Native Decoding Support

This commit is contained in:
Ishotihadus
2018-05-27 17:17:37 +09:00
parent ac7b0a2806
commit 6a0cc560f5
5 changed files with 342 additions and 195 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef ETC_H
#define ETC_H
#include <stdint.h>
void decode_etc1(const void*, const int, const int, uint32_t*);
void decode_etc2(const void*, const int, const int, uint32_t*);
void decode_etc2a1(const void*, const int, const int, uint32_t*);
void decode_etc2a8(const void*, const int, const int, uint32_t*);
#endif /* end of include guard: ETC_H */