home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / maj / 2199 / docs / adapter.doc next >
Text File  |  1994-07-09  |  2KB  |  48 lines

  1. adapter.doc                                                 April 1994
  2.  
  3.       This procedure applies only to the Borland-compiled version
  4.       of Graphica.
  5.  
  6.       Graphica always chooses the graphics mode that gives the
  7.       highest resolution for the adapter it finds.  If you want
  8.       to select a particular graphics mode, you may set the
  9.       environment variable GRAPHMODE to one of the numeric
  10.       constants of "graphics_modes" enumeration type as defined
  11.       by Borland.  The constants are as follows:
  12.  
  13.              mode           value
  14.       ------------------    -----
  15.       CGA     320*200 C0      0
  16.       CGA     320*200 C1      1
  17.       CGA     320*200 C2      2
  18.       CGA     320*200 C3      3
  19.       CGA     640*200         4
  20.  
  21.       MCGA    320*200 C0      0
  22.       MCGA    320*200 C1      1
  23.       MCGA    320*200 C2      2
  24.       MCGA    320*200 C3      3
  25.       MCGA    640*200         4
  26.       MCGA    640*480         5
  27.  
  28.       EGA     640*200         0
  29.       EGA     640*350         1
  30.       EGAMONO 640*350         3
  31.  
  32.       HERC    720*348         0
  33.  
  34.       VGA     640*200         0
  35.       VGA     640*350         1
  36.       VGA     640*480         2
  37.  
  38.       ...where C0, C1, C2, and C3 refer to the four palettes on the
  39.       CGA and compatible systems.  For example:
  40.  
  41.             C>set graphmode=0
  42.  
  43.       on a CGA adapter would allow you to see 4 colors at a
  44.       resolution of 320x200 instead of the default of 2 colors
  45.       at 640x200.
  46.  
  47. ---------------
  48. end of document