Home | History | Annotate | Download | only in graw

Lines Matching defs:tex2d

252    ubyte tex2d[SIZE][SIZE][4];
260 tex2d[t][s][0] = (x) ? 0 : 63;
261 tex2d[t][s][1] = (x) ? 0 : 128;
262 tex2d[t][s][2] = 0;
263 tex2d[t][s][3] = 0xff;
267 tex2d[t][s][0] = s*255/(SIZE-1);
268 tex2d[t][s][1] = t*255/(SIZE-1);
269 tex2d[t][s][2] = (x) ? 0 : 128;
270 tex2d[t][s][3] = 0xff;
275 tex2d[0][0][0] = 0;
276 tex2d[0][0][1] = 255;
277 tex2d[0][0][2] = 255;
278 tex2d[0][0][3] = 0;
280 tex2d[0][1][0] = 0;
281 tex2d[0][1][1] = 0;
282 tex2d[0][1][2] = 255;
283 tex2d[0][1][3] = 255;
285 tex2d[1][0][0] = 255;
286 tex2d[1][0][1] = 255;
287 tex2d[1][0][2] = 0;
288 tex2d[1][0][3] = 255;
290 tex2d[1][1][0] = 255;
291 tex2d[1][1][1] = 0;
292 tex2d[1][1][2] = 0;
293 tex2d[1][1][3] = 255;
320 tex2d,
321 sizeof tex2d[0],
322 sizeof tex2d);
335 if (memcmp(ptr, tex2d, sizeof tex2d) != 0) {