Skip to content

Instantly share code, notes, and snippets.

@adamwiggins
Created October 28, 2009 06:34
Show Gist options
  • Save adamwiggins/220297 to your computer and use it in GitHub Desktop.
Save adamwiggins/220297 to your computer and use it in GitHub Desktop.
if(CGImageGetColorSpace(image)) {
if(hasAlpha || bpp >= 8)
pixelFormat = defaultAlphaPixelFormat;
else
pixelFormat = kTexture2DPixelFormat_RGB565;
} else //NOTE: No colorspace means a mask image
pixelFormat = kTexture2DPixelFormat_A8;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment