Clone of mesa.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

download.html 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <HTML>
  2. <TITLE>Getting Mesa</TITLE>
  3. <link rel="stylesheet" type="text/css" href="mesa.css"></head>
  4. <BODY>
  5. <H1>Downloading</H1>
  6. <p>
  7. Last development release: <b>6.3.2</b>
  8. </p>
  9. <p>
  10. Last stable release: <b>6.2.1</b>
  11. </p>
  12. <p>
  13. Primary download site:
  14. <a href="http://sourceforge.net/project/showfiles.php?group_id=3"
  15. target="_parent">SourceForge</a>
  16. </p>
  17. <p>
  18. Mesa is distributed in several parts:
  19. </p>
  20. <ul>
  21. <li><b>MesaLib-x.y.z</b> - the main Mesa library source code, drivers
  22. and documentation.
  23. </li>
  24. <li><b>MesaDemos-x.y.z</b> - OpenGL demonstration and test programs.
  25. Most of the programs require GLUT (either the
  26. <a href="http://www.opengl.org/resources/libraries/glut.html"
  27. target="_parent">original GLUT by Mark Kilgard</a> or
  28. <a href="http://freeglut.sourceforge.net" target="_parent">freeglut</a> or
  29. <a href="http://freeglut.sourceforge.net" target="_parent">OpenGLUT</a>).
  30. </li>
  31. <li><b>MesaGLUT-x.y.z</b> - Mark Kilgard's GLUT, easily compiled and used
  32. with Mesa. Plus, other implementation of GLUT for DOS, OS/2, BeOS, etc.
  33. </li>
  34. </ul>
  35. <p>
  36. If you're not interested in running the demos, you'll only need the first
  37. package.
  38. </p>
  39. <p>
  40. The packages are available in .tar.gz, .tar.bz2 and .zip formats.
  41. Other organizations might offer additional package formats.
  42. </p>
  43. <H1>Unpacking</H1>
  44. <p>
  45. All the packages should be in the same directory prior to unpacking.
  46. </p>
  47. <ul>
  48. <li>To unpack .tar.gz files:
  49. <pre>
  50. tar zxf MesaLib-X.Y.tar.gz
  51. tar zxf MesaDemos-X.Y.tar.gz
  52. tar zxf MesaGLUT-X.Y.tar.gz
  53. </pre>
  54. or
  55. <pre>
  56. gzcat MesaLib-X.Y.tar.gz | tar xf -
  57. gzcat MesaDemos-X.Y.tar.gz | tar xf -
  58. gzcat MesaGLUT-X.Y.tar.gz | tar xf -
  59. </pre>
  60. or
  61. <pre>
  62. gunzip MesaLib-X.Y.tar.gz ; tar xf MesaLib-X.Y.tar
  63. gunzip MesaDemos-X.Y.tar.gz ; tar xf MesaDemos-X.Y.tar
  64. gunzip MesaGLUT-X.Y.tar.gz ; tar xf MesaGLUT-X.Y.tar
  65. </pre>
  66. <li>To unpack .tar.bz2 files:
  67. <pre>
  68. bunzip2 -c MesaLib-X.Y.tar.gz | tar xf -
  69. bunzip2 -c MesaDemos-X.Y.tar.gz | tar xf -
  70. bunzip2 -c MesaGLUT-X.Y.tar.gz | tar xf -
  71. </pre>
  72. <li>To unpack .zip files:
  73. <pre>
  74. unzip MesaLib-X.Y.zip
  75. unzip MesaDemos-X.Y.zip
  76. unzip MesaGLUT-X.Y.zip
  77. </pre>
  78. </ul>
  79. <h1>Contents</h1>
  80. <p>
  81. After unpacking you'll have these directories:
  82. </p>
  83. <pre>
  84. Makefile - top-level Makefile for most systems
  85. configs/ - makefile parameter files for various systems
  86. include/ - GL header (include) files
  87. bin/ - shell scripts for making shared libraries, etc
  88. docs/ - documentation
  89. src/ - source code for libraries
  90. src/mesa - sources for the main Mesa library and device drivers
  91. src/glu - libGLU source code
  92. src/glw - Xt/Motif/OpenGL widget code
  93. </pre>
  94. If you downloaded and unpacked the MesaDemos.X.Y package:
  95. <pre>
  96. progs/demos - original Mesa demos
  97. progs/xdemos - GLX OpenGL/Mesa demos
  98. progs/redbook - examples from the OpenGL Programming Guide
  99. progs/samples - examples from SGI
  100. progs/images/ - image files
  101. </pre>
  102. If you downloaded and unpacked the MesaGLUT.X.Y package:
  103. <pre>
  104. src/glut - GLUT library source code
  105. </pre>
  106. <p>
  107. Proceed to the <a href="install.html">compilation and installation
  108. instructions</a>.
  109. </p>
  110. </BODY>
  111. </HTML>