Lines Matching refs:table
107 GLubyte table[256][4];
114 /* load the color table for each texel-index */
115 memset(table, 0, 256*4);
116 table[' '][0] = 255;
117 table[' '][1] = 255;
118 table[' '][2] = 255;
119 table[' '][3] = 64;
120 table['M'][0] = 255;
121 table['M'][1] = 0;
122 table['M'][2] = 0;
123 table['M'][3] = 255;
124 table['E'][0] = 0;
125 table['E'][1] = 255;
126 table['E'][2] = 0;
127 table['E'][3] = 255;
128 table['S'][0] = 0;
129 table['S'][1] = 0;
130 table['S'][2] = 255;
131 table['S'][3] = 255;
132 table['A'][0] = 255;
133 table['A'][1] = 255;
134 table['A'][2] = 0;
135 table['A'][3] = 255;
143 256, /* table size */
144 GL_RGBA, /* table format */
145 GL_UNSIGNED_BYTE, /* table type */
146 table); /* the color table */
151 256, /* table size */
152 GL_RGBA, /* table format */
153 GL_UNSIGNED_BYTE, /* table type */
154 table); /* the color table */
188 GLubyte table[256][4];
203 table[i][0] = i;
204 table[i][1] = 0;
205 table[i][2] = 0;
206 table[i][3] = 255;
215 256, /* table size */
216 GL_RGBA, /* table format */
217 GL_UNSIGNED_BYTE, /* table type */
218 table); /* the color table */
223 256, /* table size */
224 GL_RGBA, /* table format */
225 GL_UNSIGNED_BYTE, /* table type */
226 table); /* the color table */