Important: The information in this document is obsolete and should not be used for new development.
ITab
TheITab
data structure contains the inverse table information that the Color Manager uses for fast mapping of RGB color values.
struct ITab { long iTabSeed; /* copy of color table seed */ short iTabRes; /* resolution of table */ unsigned chariTTable[1]; /* byte color table index values */ }; typedef struct ITab ITab; typedef ITab *ITabPtr, **ITabHandle;
Field Description
iTabSeed
- The
iTabSeed
value, initially set from the corresponding CLUT'sctSeed
field. If at any time these don't match, then the color table was changed, and the inverse table needs to be rebuilt.iTabRes
- The resolution of this inverse table.
iTabTable
- An array of index values. The size of the
iTabTable
field in bytes is23*iTabRes
.