Home | History | Annotate | Download | only in graw

Lines Matching refs:tex2d

246    ubyte tex2d[SIZE][SIZE][4];
254 tex2d[t][s][0] = (x) ? 0 : 63;
255 tex2d[t][s][1] = (x) ? 0 : 128;
256 tex2d[t][s][2] = 0;
257 tex2d[t][s][3] = 0xff;
261 tex2d[t][s][0] = s*255/(SIZE-1);
262 tex2d[t][s][1] = t*255/(SIZE-1);
263 tex2d[t][s][2] = (x) ? 0 : 128;
264 tex2d[t][s][3] = 0xff;
269 tex2d[0][0][0] = 0;
270 tex2d[0][0][1] = 255;
271 tex2d[0][0][2] = 255;
272 tex2d[0][0][3] = 0;
274 tex2d[0][1][0] = 0;
275 tex2d[0][1][1] = 0;
276 tex2d[0][1][2] = 255;
277 tex2d[0][1][3] = 255;
279 tex2d[1][0][0] = 255;
280 tex2d[1][0][1] = 255;
281 tex2d[1][0][2] = 0;
282 tex2d[1][0][3] = 255;
284 tex2d[1][1][0] = 255;
285 tex2d[1][1][1] = 0;
286 tex2d[1][1][2] = 0;
287 tex2d[1][1][3] = 255;
313 tex2d,
314 sizeof tex2d[0],
315 sizeof tex2d);
330 if (memcmp(ptr, tex2d, sizeof tex2d) != 0) {