Add more CFFI methods, improve use within the tools (force color order)

This commit is contained in:
Joshua Granick
2015-04-14 16:15:32 -07:00
parent e2c2359726
commit 8680d42d25
8 changed files with 607 additions and 354 deletions

View File

@@ -0,0 +1,19 @@
#ifndef LIME_GRAPHICS_PIXEL_FORMAT_H
#define LIME_GRAPHICS_PIXEL_FORMAT_H
namespace lime {
enum PixelFormat {
RGBA,
ARGB
};
}
#endif