Home | History | Annotate | Download | only in graw

Lines Matching refs:tex2d

295    ubyte tex2d[SIZE][SIZE][4];
303 tex2d[t][s][0] = (x) ? 0 : 63;
304 tex2d[t][s][1] = (x) ? 0 : 128;
305 tex2d[t][s][2] = 0;
306 tex2d[t][s][3] = 0xff;
310 tex2d[t][s][0] = s*255/(SIZE-1);
311 tex2d[t][s][1] = t*255/(SIZE-1);
312 tex2d[t][s][2] = (x) ? 0 : 128;
313 tex2d[t][s][3] = 0xff;
318 tex2d[0][0][0] = 0;
319 tex2d[0][0][1] = 255;
320 tex2d[0][0][2] = 255;
321 tex2d[0][0][3] = 0;
323 tex2d[0][1][0] = 0;
324 tex2d[0][1][1] = 0;
325 tex2d[0][1][2] = 255;
326 tex2d[0][1][3] = 255;
328 tex2d[1][0][0] = 255;
329 tex2d[1][0][1] = 255;
330 tex2d[1][0][2] = 0;
331 tex2d[1][0][3] = 255;
333 tex2d[1][1][0] = 255;
334 tex2d[1][1][1] = 0;
335 tex2d[1][1][2] = 0;
336 tex2d[1][1][3] = 255;
362 tex2d,
363 sizeof tex2d[0],
364 sizeof tex2d);
379 if (memcmp(ptr, tex2d, sizeof tex2d) != 0) {