home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / 3DTOSHI2.ZIP / mpgfx / source / Gfxmodes.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-08  |  520 b   |  19 lines

  1.  
  2. // gfxmodes.cpp
  3. //
  4. // Copyright (c) 1995 by Toshiaki Tsuji, all rights reserved.
  5.  
  6. #include "stdgfx.h"
  7. #include "gfxmodes.h"
  8.  
  9. MODEINFO ModeTable[SUPPORTED_MODE] =
  10.   {
  11.   /* M80x25x16    */ { 0x03,   80,  25, 4, FALSE },
  12.   /* M320x200x256 */ { 0x13,  320, 200, 8, FALSE },
  13.   /* M640x400x256 */ { 0x100, 640, 400, 8, TRUE },
  14.   /* M640x480x256 */ { 0x101, 640, 480, 8, TRUE },
  15.   /* M800x600x256 */ { 0x103, 800, 600, 8, TRUE },
  16.   /* M1024x768x256 */ { 0x105, 1024, 768, 8, TRUE }
  17.   }; // End of ModeTable
  18.  
  19.