mirror of https://github.com/axmolengine/axmol.git
parent
d99a278c23
commit
f75f6c2b64
|
@ -8,7 +8,7 @@ options
|
|||
strict=0
|
||||
}
|
||||
|
||||
if {{ defined __APPLE__ }}
|
||||
if {{ sys.platform == 'darwin' }}
|
||||
{
|
||||
define FT_CONFIG_OPTION_NO_ASSEMBLER
|
||||
define DARWIN_NO_CARBON
|
||||
|
|
|
@ -122,15 +122,15 @@ typedef enum {
|
|||
kPVR3TexturePixelFormat_PVRTC_4BPP_RGBA = 3,
|
||||
|
||||
/* supported channel type formats */
|
||||
kPVR3TexturePixelFormat_BGRA_8888 = 0x0808080861726762,
|
||||
kPVR3TexturePixelFormat_RGBA_8888 = 0x0808080861626772,
|
||||
kPVR3TexturePixelFormat_RGBA_4444 = 0x0404040461626772,
|
||||
kPVR3TexturePixelFormat_RGBA_5551 = 0x0105050561626772,
|
||||
kPVR3TexturePixelFormat_RGB_565 = 0x0005060500626772,
|
||||
kPVR3TexturePixelFormat_RGB_888 = 0x0008080800626772,
|
||||
kPVR3TexturePixelFormat_A_8 = 0x0000000800000061,
|
||||
kPVR3TexturePixelFormat_L_8 = 0x000000080000006c,
|
||||
kPVR3TexturePixelFormat_LA_88 = 0x000008080000616c,
|
||||
kPVR3TexturePixelFormat_BGRA_8888 = 0x0808080861726762ULL,
|
||||
kPVR3TexturePixelFormat_RGBA_8888 = 0x0808080861626772ULL,
|
||||
kPVR3TexturePixelFormat_RGBA_4444 = 0x0404040461626772ULL,
|
||||
kPVR3TexturePixelFormat_RGBA_5551 = 0x0105050561626772ULL,
|
||||
kPVR3TexturePixelFormat_RGB_565 = 0x0005060500626772ULL,
|
||||
kPVR3TexturePixelFormat_RGB_888 = 0x0008080800626772ULL,
|
||||
kPVR3TexturePixelFormat_A_8 = 0x0000000800000061ULL,
|
||||
kPVR3TexturePixelFormat_L_8 = 0x000000080000006cULL,
|
||||
kPVR3TexturePixelFormat_LA_88 = 0x000008080000616cULL,
|
||||
} ccPVR3TexturePixelFormat;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue