Created
February 23, 2017 15:32
-
-
Save jleclanche/4d0026e0e1e9cebcdab71d2e44546749 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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