Final Cleanup

-Removed LPNG
-Removed LJPEG
-Re-Added DefferredPNGWriter from rextimmy stb work

Commented out lines about file saving and reading in gfont, these are good for debugging font saves.
This commit is contained in:
marauder2k7 2024-01-23 08:47:26 +00:00
parent 68a7dadd2b
commit d87199f5da
635 changed files with 134 additions and 227025 deletions

View file

@ -64,4 +64,23 @@ namespace ImageUtil
U32 getMaxMipCount(const U32 width, const U32 height);
};
#endif
struct DeferredPNGWriterData;
class Stream;
class GBitmap;
class DeferredPNGWriter
{
protected:
DeferredPNGWriterData* mData;
bool mActive;
public:
DeferredPNGWriter();
~DeferredPNGWriter();
bool begin(GFXFormat format, S32 width, S32 height, Stream& stream);
void append(GBitmap* bitmap, U32 rows);
void end();
};
#endif