| 664 | //ILfloat KeyRed = 0, KeyGreen = 0, KeyBlue = 0, KeyAlpha = 0; |
| 665 | |
| 666 | void ILAPIENTRY ilKeyColour(ILclampf Red, ILclampf Green, ILclampf Blue, ILclampf Alpha) |
| 667 | { |
| 668 | ILfloat KeyRed = 0, KeyGreen = 0, KeyBlue = 0, KeyAlpha = 0; |
| 669 | KeyRed = Red; |
| 670 | KeyGreen = Green; |
| 671 | KeyBlue = Blue; |
| 672 | KeyAlpha = Alpha; |
| 673 | return; |
| 674 | } |
| 675 | |
| 676 | |
| 677 | // Adds an alpha channel to an 8 or 24-bit image, |
nothing calls this directly
no outgoing calls
no test coverage detected