home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / os-include / graphics / coerce.h < prev    next >
C/C++ Source or Header  |  1993-10-15  |  687b  |  32 lines

  1. #ifndef GRAPHICS_COERCE_H
  2. #define GRAPHICS_COERCE_H
  3. /*
  4. **    $VER: coerce.h 39.3 (15.2.93)
  5. **    Includes Release 40.15
  6. **
  7. **    mode coercion definitions
  8. **
  9. **    (C) Copyright 1992-1993 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. /* These flags are passed (in combination) to CoerceMode() to determine the
  14.  * type of coercion required.
  15.  */
  16.  
  17. /* Ensure that the mode coerced to can display just as many colours as the
  18.  * ViewPort being coerced.
  19.  */
  20. #define PRESERVE_COLORS 1
  21.  
  22. /* Ensure that the mode coerced to is not interlaced. */
  23. #define AVOID_FLICKER 2
  24.  
  25. /* Coercion should ignore monitor compatibility issues. */
  26. #define IGNORE_MCOMPAT 4
  27.  
  28.  
  29. #define BIDTAG_COERCE 1    /* Private */
  30.  
  31. #endif
  32.