home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / gfx / edit / tsmorph / src / brush / next.c < prev    next >
C/C++ Source or Header  |  1993-10-05  |  668b  |  60 lines

  1. #include <intuition/intuition.h>
  2. /* Iff2Src conversion: dh0:tsm/brushes/Next.brush */
  3.  
  4. static UWORD __chip next_data[60] = // note twice the actual size
  5.     {
  6.     /* Plane 0 */
  7.         0x0000,
  8.         0x0002,
  9.         0x0002,
  10.         0x0002,
  11.         0x0102,
  12.         0x0182,
  13.         0x1FC2,
  14.         0x1FE2,
  15.         0x1FC2,
  16.         0x0182,
  17.         0x0102,
  18.         0x0002,
  19.         0x0002,
  20.         0x0002,
  21.         0x7FFE,
  22.     /* Plane 1 */
  23.         0xFFFE,
  24.         0x8000,
  25.         0x8000,
  26.         0x8000,
  27.         0x8000,
  28.         0x8000,
  29.         0x8000,
  30.         0x8000,
  31.         0x8000,
  32.         0x8000,
  33.         0x8000,
  34.         0x8000,
  35.         0x8000,
  36.         0x8000,
  37.         0x8000
  38.     };
  39.  
  40.  
  41. struct Image next_im =
  42.     {
  43.         0,0,
  44.         15,15,
  45.         2,
  46.         &next_data[0],
  47.         0x03,0x0,
  48.         NULL
  49.     };
  50.  
  51. struct Image next_imx =
  52.     {
  53.         0,0,
  54.         15,15,
  55.         2,
  56.         &next_data[30],
  57.         0x03,0x0,
  58.         NULL
  59.     };
  60.