Improve handling of Image endianness (resolve #1018, resolve #1070)

This commit is contained in:
Joshua Granick
2017-09-12 12:32:02 -07:00
parent 2932a9b517
commit 45054e39d6
9 changed files with 86 additions and 40 deletions

View File

@@ -0,0 +1,19 @@
#ifndef LIME_SYSTEM_ENDIAN_H
#define LIME_SYSTEM_ENDIAN_H
namespace lime {
enum Endian {
LITTLE_ENDIAN,
BIG_ENDIAN
};
}
#endif