adamwiggins (owner)

Revisions

gist: 220297 Download_button fork
public
Public Clone URL: git://gist.github.com/220297.git
Embed All Files: show embed
Texture2D.m #
1
2
3
4
5
6
7
8
   if(CGImageGetColorSpace(image)) {
      if(hasAlpha || bpp >= 8)
         pixelFormat = defaultAlphaPixelFormat;
      else
         pixelFormat = kTexture2DPixelFormat_RGB565;
   } else //NOTE: No colorspace means a mask image
      pixelFormat = kTexture2DPixelFormat_A8;