]> Dogcows Code - chaz/yoink/blobdiff - src/moof/compression.hh
compression functions; fixed texture seams
[chaz/yoink] / src / moof / compression.hh
diff --git a/src/moof/compression.hh b/src/moof/compression.hh
new file mode 100644 (file)
index 0000000..b726088
--- /dev/null
@@ -0,0 +1,26 @@
+
+/*]  Copyright (c) 2009-2011, Charles McGarvey  [*****************************
+**]  All rights reserved.
+*
+* Distributable under the terms and conditions of the 2-clause BSD license;
+* see the file COPYING for a complete text of the license.
+*
+*****************************************************************************/
+
+#ifndef _MOOF_COMPRESSION_H_
+#define _MOOF_COMPRESSION_H_
+
+#include <iostream>
+
+
+namespace moof {
+
+
+void inflate(std::istream& in, std::ostream& out);
+void inflate(const char* in, size_t size, std::ostream& out);
+
+
+} // namespace moof
+
+#endif // _MOOF_COMPRESSION_H_
+
This page took 0.016915 seconds and 4 git commands to generate.