Created
October 29, 2009 07:56
-
-
Save adamwiggins/221254 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Possible Pixel Formats for the EAGLView */ | |
typedef enum { | |
/** RGB565 pixel format. No alpha. 16-bit */ | |
kPixelFormatRGB565, | |
/** RGBA format. 32-bit (default) */ | |
kPixelFormatRGBA8888, | |
kRGB565 = kPixelFormatRGB565, | |
kRGBA8 = kPixelFormatRGBA8888, | |
} tPixelFormat; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment