home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / TRSICAT.LZX / CATS_CD2_TRSI / Inc&AD2.1 / includes / graphics / gfx.i < prev    next >
Encoding:
Text File  |  1992-09-11  |  877 b   |  51 lines

  1.     IFND    GRAPHICS_GFX_I
  2. GRAPHICS_GFX_I    SET    1
  3. **
  4. **    $VER: gfx.i 37.0 (07.01.91)
  5. **    Includes Release 38.56
  6. **
  7. **
  8. **
  9. **    (C) Copyright 1985-1992 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. **
  12.  
  13.     IFND    EXEC_TYPES_I
  14.     include 'exec/types.i'
  15.     ENDC
  16.  
  17. BITSET        equ $8000
  18. BITCLR        equ 0
  19. AGNUS        equ 1
  20. DENISE        equ 1
  21.  
  22.     STRUCTURE    BitMap,0
  23.     WORD    bm_BytesPerRow
  24.     WORD    bm_Rows
  25.     BYTE    bm_Flags
  26.     BYTE    bm_Depth
  27.     WORD    bm_Pad
  28.     STRUCT  bm_Planes,8*4
  29.     LABEL   bm_SIZEOF
  30.  
  31.    STRUCTURE   Rectangle,0
  32.       WORD  ra_MinX
  33.       WORD  ra_MinY
  34.       WORD  ra_MaxX
  35.       WORD  ra_MaxY
  36.    LABEL    ra_SIZEOF
  37.  
  38.    STRUCTURE   Rect32,0
  39.       LONG  r32_MinX
  40.       LONG  r32_MinY
  41.       LONG  r32_MaxX
  42.       LONG  r32_MaxY
  43.    LABEL    r32_SIZEOF
  44.  
  45.    STRUCTURE   tPoint,0
  46.       WORD  tpt_x
  47.       WORD  tpt_y
  48.    LABEL    tpt_SIZEOF
  49.  
  50.     ENDC    ; GRAPHICS_GFX_I
  51.