home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / UT / UT236.ZIP / README.DOC next >
Text File  |  1990-10-14  |  2KB  |  85 lines

  1. SuperVGA ScreenBlanker : By David Wolfe using Turbo C++
  2.  
  3.      This program will draw some nice lines up to 2000 and then do a
  4. clear screen. It draws in 256 colors and it makes a nice ScreenBlanker
  5. as it will keep clearing the screen.
  6.      After a keypress it stops and freezes the screen if you have a color
  7. printer and would like to save it. One more keypress to DOS.
  8.      The program will detect your card and go to the best mode, it DOES
  9. NOT know if your monitor can do that mode, it does look at the ram
  10. on your video card, but if your monitor cannot DO that high you
  11. must set it from command line.
  12.      This program does not look for a MultiFrequency monitor...
  13.      Modes from command line are the following.....
  14.      You DO NOT have to type the "0x"
  15.  
  16.  ATI320x200    0        /* ATI VGA graphics modes */ 
  17.  ATI640x400    1 
  18.  ATI640x480    2 
  19.  ATI800x600    3 
  20.  
  21.  DVGA320x200   4        /* Orchid ProDesigner Plus */ 
  22.  DVGA640x350   5        /* (Tseng Labs 3000 chipset) */ 
  23.  DVGA640x480   6 
  24.  DVGA800x600   7 
  25.  
  26.  PVGA320x200   8        /* Paradise (Western Digital) */ 
  27.  PVGA640x400   9 
  28.  PVGA640x480   0x0a 
  29.  
  30.  TEC320x200    0x0b     /* Tecmar */ 
  31.  TEC640x350    0x0c 
  32.  TEC640x400    0x0d 
  33.  TEC640x480    0x0e 
  34.  TEC800x600    0x0f 
  35.  
  36.  VID320x200    0x10     /* Video 7 (Headland Technologies) */ 
  37.  VID640x400    0x11 
  38.  VID640x480    0x12 
  39.  VID720x540    0x13 
  40.  VID800x600    0x14 
  41.  
  42.  TRID320x200   0x15     /* Trident chipsets */ 
  43.  TRID640x400   0x16 
  44.  TRID640x480   0x17 
  45.  TRID800x600   0x18 
  46.  
  47.  CHIP320x200   0x19     /* Chips and Tech chipset */ 
  48.  CHIP640x400   0x1a 
  49.  CHIP640x480   0x1b 
  50.  CHIP800x600   0x1c 
  51.  
  52.  AHDA320x200   0x1d     /* Ahead Systems VGA wizard deluxe (RevA)*/
  53.  AHDA640x400   0x1e 
  54.  AHDA640x480   0x1f 
  55.  AHDA800x600   0x20 
  56.  
  57.  AHDB320x200   0x21     /* Ahead Systems VGA wizard deluxe (RevB)*/
  58.  AHDB640x400   0x22 
  59.  AHDB640x480   0x23 
  60.  AHDB800x600   0x24 
  61.  AHDB1024x768  0x25 
  62.  
  63.  EVRX320x200   0x26     /* Everex */ 
  64.  EVRX640x400   0x27 
  65.  EVRX640x480   0x28 
  66.  EVRX800x600   0x29 
  67.  
  68.  OAK320x200    0x2a     /* Oak Technology */ 
  69.  OAK640x480    0x2b 
  70.  OAK800x600    0x2c 
  71.  
  72.  TSG320x200    0x2d     /* Orchid ProDesigner Plus II */ 
  73.  TSG640x400    0x2e     /* (Tseng Labs 4000 chipset) */ 
  74.  TSG640x800    0x2f 
  75.  TSG800x600    0x30 
  76.  TSG1024x768   0x31 
  77.  
  78.  GEN320x200    0x32     /* Genoa GVGA */ 
  79.  GEN640x400    0x33 
  80.  GEN640x480    0x34 
  81.  GEN800x600    0x35 
  82.  
  83.  
  84. 
  85.