Removed iOS-specific code to decode and encode images using the ImageIO framework (it's now redundant.)

This commit is contained in:
Alex Szpakowski
2015-05-03 20:49:06 -03:00
parent 542596531c
commit 60e8cc24bf
5 changed files with 4 additions and 364 deletions
+4 -5
View File
@@ -31,12 +31,11 @@ namespace magpie
{
/**
* Interface between ImageData and the stb_image library, for decoding TGA and
* BMP images.
* Interface between ImageData and the stb_image library, for decoding JPEG,
* TGA, and BMP images.
*
* We could use stb_image to decode PNG and JPEG as well, but performance and
* comprehensive format support is lacking compared to some alternatives, plus
* stb_image_write doesn't have JPEG support.
* We could use stb_image to decode PNG as well, but performance and
* comprehensive format support is lacking compared to some alternatives.
**/
class STBHandler : public FormatHandler
{