Initial support for WAV parsing

This commit is contained in:
Joshua Granick
2014-07-28 21:27:21 -07:00
parent d8a0eed472
commit b55c191e04
10 changed files with 408 additions and 215 deletions

View File

@@ -17,15 +17,14 @@ namespace lime {
Image ();
~Image ();
void Resize (int width, int height, int bpp = 4);
void Blit (const unsigned char *data, int x, int y, int width, int height);
void Resize (int width, int height, int bpp = 4);
value Value ();
int width;
int height;
int bpp; // bytes per pixel
int bpp;
ByteArray *data;
int height;
int width;
private: