goat3d

diff src/goat3d_impl.h @ 14:188c697b3b49

- added a document describing the goat3d file format chunk hierarchy - started an alternative XML-based file format - added the openctm library
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 26 Sep 2013 04:47:05 +0300
parents be15ba7c5483
children f1b4c27382ce
line diff
     1.1 --- a/src/goat3d_impl.h	Tue Sep 10 15:29:45 2013 +0300
     1.2 +++ b/src/goat3d_impl.h	Thu Sep 26 04:47:05 2013 +0300
     1.3 @@ -60,7 +60,12 @@
     1.4  
     1.5  	bool load(goat3d_io *io);
     1.6  	bool save(goat3d_io *io) const;
     1.7 +
     1.8 +	bool loadxml(goat3d_io *io);
     1.9 +	bool savexml(goat3d_io *io) const;
    1.10  };
    1.11  
    1.12 +void io_fprintf(goat3d_io *io, const char *fmt, ...);
    1.13 +void io_vfprintf(goat3d_io *io, const char *fmt, va_list ap);
    1.14  
    1.15  #endif	// GOAT3D_IMPL_H_