graphh.inc 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by Florian Klaempfl
  5. Graph include file for linux.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. Const
  13. { Supported modes }
  14. {(sg) GTEXT deactivated because we need mode #0 as default mode}
  15. {GTEXT = 0; Compatible with VGAlib v1.2 }
  16. G320x200x16 = 1;
  17. G640x200x16 = 2;
  18. G640x350x16 = 3;
  19. G640x480x16 = 4;
  20. G320x200x256 = 5;
  21. G320x240x256 = 6;
  22. G320x400x256 = 7;
  23. G360x480x256 = 8;
  24. G640x480x2 = 9;
  25. G640x480x256 = 10;
  26. G800x600x256 = 11;
  27. G1024x768x256 = 12;
  28. G1280x1024x256 = 13; { Additional modes. }
  29. G320x200x32K = 14;
  30. G320x200x64K = 15;
  31. G320x200x16M = 16;
  32. G640x480x32K = 17;
  33. G640x480x64K = 18;
  34. G640x480x16M = 19;
  35. G800x600x32K = 20;
  36. G800x600x64K = 21;
  37. G800x600x16M = 22;
  38. G1024x768x32K = 23;
  39. G1024x768x64K = 24;
  40. G1024x768x16M = 25;
  41. G1280x1024x32K = 26;
  42. G1280x1024x64K = 27;
  43. G1280x1024x16M = 28;
  44. G800x600x16 = 29;
  45. G1024x768x16 = 30;
  46. G1280x1024x16 = 31;
  47. G720x348x2 = 32; { Hercules emulation mode }
  48. G320x200x16M32 = 33; { 32-bit per pixel modes. }
  49. G640x480x16M32 = 34;
  50. G800x600x16M32 = 35;
  51. G1024x768x16M32 = 36;
  52. G1280x1024x16M32 = 37;
  53. { additional resolutions }
  54. G1152x864x16 = 38;
  55. G1152x864x256 = 39;
  56. G1152x864x32K = 40;
  57. G1152x864x64K = 41;
  58. G1152x864x16M = 42;
  59. G1152x864x16M32 = 43;
  60. G1600x1200x16 = 44;
  61. G1600x1200x256 = 45;
  62. G1600x1200x32K = 46;
  63. G1600x1200x64K = 47;
  64. G1600x1200x16M = 48;
  65. G1600x1200x16M32 = 49;
  66. {
  67. $Log$
  68. Revision 1.3 2000-01-07 16:41:40 daniel
  69. * copyright 2000
  70. Revision 1.2 1999/12/20 11:22:38 peter
  71. * modes moved to interface
  72. * integer -> smallint
  73. Revision 1.1 1999/11/08 15:06:17 peter
  74. * needed
  75. }