Lots changed: ImageData can now encode itself to any format you like as long as it's tga, love.filesystem can now write data to files, added EncodedImageData class.

This commit is contained in:
bill@Ixion
2009-09-04 00:34:13 -05:00
parent bd1e587811
commit 3655c9caae
10 changed files with 411 additions and 193 deletions
+4
View File
@@ -76,6 +76,10 @@ namespace image
* @return The new ImageData.
**/
virtual ImageData * newImageData(int width, int height, void *data) = 0;
enum ImageFormat {
FORMAT_TGA
};
}; // Image