Returns the format of any bpp
| 38 | |
| 39 | // Returns the format of any bpp |
| 40 | ILAPI ILenum ILAPIENTRY ilGetFormatBpp(ILubyte Bpp) |
| 41 | { |
| 42 | switch (Bpp) |
| 43 | { |
| 44 | case 1: |
| 45 | return IL_LUMINANCE; |
| 46 | case 2: |
| 47 | return IL_LUMINANCE_ALPHA; |
| 48 | case 3: |
| 49 | return IL_RGB; |
| 50 | case 4: |
| 51 | return IL_RGBA; |
| 52 | } |
| 53 | return 0; |
| 54 | } |
| 55 | |
| 56 | |
| 57 | // Returns the bpc of any Type |
no outgoing calls
no test coverage detected