STB used for loading and writing images.
This commit is contained in:
marauder2k7 2023-11-30 09:09:13 +00:00
parent d671f2611e
commit 108ba34c08
21 changed files with 20355 additions and 1737 deletions

View file

@ -251,9 +251,9 @@ bool GFXTextureObject::dumpToDisk( const String &bmType, const String &path )
return false;
if ( mBitmap )
return mBitmap->writeBitmap( bmType, stream );
return mBitmap->writeBitmap( bmType, path);
GBitmap bitmap( getWidth(), getHeight(), false, getFormat() );
copyToBmp( &bitmap );
return bitmap.writeBitmap( bmType, stream );
return bitmap.writeBitmap( bmType, path);
}