Skip to content

Instantly share code, notes, and snippets.

@jleclanche
Created February 23, 2017 15:32
Show Gist options
  • Save jleclanche/4d0026e0e1e9cebcdab71d2e44546749 to your computer and use it in GitHub Desktop.
Save jleclanche/4d0026e0e1e9cebcdab71d2e44546749 to your computer and use it in GitHub Desktop.
const (
BLPColorEncodingJPEG uint8 = 0
BLPColorEncodingPalette uint8 = 1
BLPColorEncodingDXT uint8 = 2
BLPColorEncodingARGB8888 uint8 = 3
BLPPixelFormatDXT1 uint8 = 0
BLPPixelFormatDXT3 uint8 = 1
BLPPixelFormatARGB8888 uint8 = 2
BLPPixelFormatARGB1555 uint8 = 3
BLPPixelFormatARGB4444 uint8 = 4
BLPPixelFormatRGB565 uint8 = 5
BLPPixelFormatDXT5 uint8 = 7
BLPPixelFormatUnspecified uint8 = 8
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment