]> Dogcows Code - chaz/yoink/blob - src/moof/compression.hh
compression functions; fixed texture seams
[chaz/yoink] / src / moof / compression.hh
1
2 /*] Copyright (c) 2009-2011, Charles McGarvey [*****************************
3 **] All rights reserved.
4 *
5 * Distributable under the terms and conditions of the 2-clause BSD license;
6 * see the file COPYING for a complete text of the license.
7 *
8 *****************************************************************************/
9
10 #ifndef _MOOF_COMPRESSION_H_
11 #define _MOOF_COMPRESSION_H_
12
13 #include <iostream>
14
15
16 namespace moof {
17
18
19 void inflate(std::istream& in, std::ostream& out);
20 void inflate(const char* in, size_t size, std::ostream& out);
21
22
23 } // namespace moof
24
25 #endif // _MOOF_COMPRESSION_H_
26
This page took 0.029116 seconds and 4 git commands to generate.