mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 22:54:34 +00:00
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:
parent
68a7dadd2b
commit
d87199f5da
635 changed files with 134 additions and 227025 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue