Skip to content

Instantly share code, notes, and snippets.

@adamwiggins
Created October 29, 2009 07:56
Show Gist options
  • Save adamwiggins/221254 to your computer and use it in GitHub Desktop.
Save adamwiggins/221254 to your computer and use it in GitHub Desktop.
/** 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