adamwiggins (owner)

Revisions

gist: 221254 Download_button fork
public
Public Clone URL: git://gist.github.com/221254.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
/** 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;