Tlut0.h
510 Bytes
/*
* Test texture lookup table, TLUT
*
*/
#ifndef TLUT0_INCLD
#define TLUT0_INCLD
unsigned short Tlut0[] = {
0x0000,
(31 << 11) | 1,
(31 << 6) | 1,
(31 << 1) | 1,
(31 << 11) | (31 << 6) | 1,
(31 << 11) | (31 << 1) | 1,
(31 << 6) | (31 <<1) | 1,
(31 << 11) | (31 << 6) | (31 <<1) | 1,
0x4321,
(15 << 11) | 1,
(15 << 6) | 1,
(15 << 1) | 1,
(15 << 11) | (15 << 6) | 1,
(15 << 11) | (15 << 1) | 1,
(15 << 6) | (15 <<1) | 1,
(15 << 11) | (15 << 6) | (15 <<1) | 1
};
#endif /* TLUT0_INCLD */