passed the callback in the save

This commit is contained in:
Paolo Cignoni 2008-01-24 11:54:23 +00:00
parent 5e52fd038c
commit c07c26d084
1 changed files with 5 additions and 2 deletions

View File

@ -24,6 +24,9 @@
History History
$Log: not supported by cvs2svn $ $Log: not supported by cvs2svn $
Revision 1.28 2007/12/13 00:20:34 cignoni
removed harmless printf cast warnings
Revision 1.27 2007/11/06 10:59:41 ponchio Revision 1.27 2007/11/06 10:59:41 ponchio
Typo Typo
@ -174,10 +177,10 @@ static int Save(SaveMeshType &m, const char * filename, int savemask, CallBackP
{ {
PlyInfo pi; PlyInfo pi;
pi.mask=savemask; pi.mask=savemask;
return Save(m,filename,true,pi); return Save(m,filename,true,pi,cb);
} }
static int Save(SaveMeshType &m, const char * filename, bool binary, PlyInfo &pi ) // V1.0 static int Save(SaveMeshType &m, const char * filename, bool binary, PlyInfo &pi, CallBackPos * /* cb=0 */ ) // V1.0
{ {
FILE * fpout; FILE * fpout;
int i; int i;