[Plib-cvs] plib/src/ssg ssg.h,1.164,1.165
Brought to you by:
sjbaker
From: Wolfram K. <wol...@us...> - 2003-12-12 17:40:24
|
Update of /cvsroot/plib/plib/src/ssg In directory sc8-pr-cvs1:/tmp/cvs-serv3963 Modified Files: ssg.h Log Message: Loading of PCX textures. compare functions for ssgSimpleList and ssgVtxTable. Index: ssg.h =================================================================== RCS file: /cvsroot/plib/plib/src/ssg/ssg.h,v retrieving revision 1.164 retrieving revision 1.165 diff -u -d -r1.164 -r1.165 --- ssg.h 7 Oct 2003 03:00:11 -0000 1.164 +++ ssg.h 12 Dec 2003 17:40:21 -0000 1.165 @@ -446,6 +446,7 @@ limit = total = 0 ; } + int compare(ssgSimpleList *other, int print_result=TRUE); int getSizeOf (void) { return size_of ; } int getNum (void) { return total ; } @@ -683,6 +684,7 @@ bool ssgLoadBMP ( const char *fname, ssgTextureInfo* info ) ; bool ssgLoadTGA ( const char *fname, ssgTextureInfo* info ) ; bool ssgLoadMDLTexture ( const char *fname, ssgTextureInfo* info ) ; + bool ssgLoadPCX ( const char *fname, ssgTextureInfo* info ) ; void ssgAddTextureFormat ( const char* extension, bool (*) (const char*, ssgTextureInfo* info) ) ; @@ -1415,6 +1417,7 @@ ssgColourArray *colours ; public: + int compare(ssgVtxTable *other, int print_result=TRUE); virtual ssgBase *clone ( int clone_flags = 0 ) ; ssgVtxTable () ; @@ -2697,6 +2700,7 @@ int ssgSaveATG ( const char *fname, ssgEntity *ent ) ; int ssgSaveVRML1( const char *fname, ssgEntity *ent ) ; int ssgSaveASC ( const char *fname, ssgEntity *ent ) ; +int ssgSavePOV ( const char *fname, ssgEntity *ent ) ; ssgEntity *ssgLoad ( const char *fname, const ssgLoaderOptions *options = NULL ) ; |