Convert the color pallette to four lookup tables

C# | Visual Basic | Visual C++ |
public static void ColorPaletteToLookupTable( ColorPalette pallette, out Matrix<byte> bTable, out Matrix<byte> gTable, out Matrix<byte> rTable, out Matrix<byte> aTable )
Public Shared Sub ColorPaletteToLookupTable ( _ pallette As ColorPalette, _ <OutAttribute> ByRef bTable As Matrix(Of Byte), _ <OutAttribute> ByRef gTable As Matrix(Of Byte), _ <OutAttribute> ByRef rTable As Matrix(Of Byte), _ <OutAttribute> ByRef aTable As Matrix(Of Byte) _ )
public: static void ColorPaletteToLookupTable( ColorPalette^ pallette, [OutAttribute] Matrix<unsigned char>^% bTable, [OutAttribute] Matrix<unsigned char>^% gTable, [OutAttribute] Matrix<unsigned char>^% rTable, [OutAttribute] Matrix<unsigned char>^% aTable )

- pallette (ColorPalette)
- The color pallette to transform