home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / useful / os-include / graphics / coerce.h < prev    next >
C/C++ Source or Header  |  1992-09-24  |  559b  |  26 lines

  1. #ifndef GRAPHICS_COERCE_H
  2. #define GRAPHICS_COERCE_H
  3. /*
  4. **    $VER: coerce.h 39.2 (08.09.92)
  5. **    Includes Release 39.108
  6. **
  7. **    mode coercion definitions
  8. **
  9. **    (C) Copyright 1992 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. #endif
  26.