Clone of mesa.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

download.html 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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 stable release: <b>7.0</b>
  8. </p>
  9. <p>
  10. Primary download site:
  11. <a href="http://sourceforge.net/project/showfiles.php?group_id=3"
  12. target="_parent">SourceForge</a>
  13. </p>
  14. <p>
  15. Mesa is distributed in several parts:
  16. </p>
  17. <ul>
  18. <li><b>MesaLib-x.y.z</b> - the main Mesa library source code, drivers
  19. and documentation.
  20. </li>
  21. <li><b>MesaDemos-x.y.z</b> - OpenGL demonstration and test programs.
  22. Most of the programs require GLUT (either the
  23. <a href="http://www.opengl.org/resources/libraries/glut"
  24. target="_parent">original GLUT by Mark Kilgard</a> or
  25. <a href="http://freeglut.sourceforge.net" target="_parent">freeglut</a> or
  26. <a href="http://openglut.sourceforge.net" target="_parent">OpenGLUT</a>).
  27. </li>
  28. <li><b>MesaGLUT-x.y.z</b> - Mark Kilgard's GLUT, easily compiled and used
  29. with Mesa. Plus, other implementation of GLUT for DOS, OS/2, BeOS, etc.
  30. </li>
  31. </ul>
  32. <p>
  33. If you're not interested in running the demos, you'll only need the first
  34. package.
  35. </p>
  36. <p>
  37. If you're new to this and not sure what you're doing, grab all three packages.
  38. </p>
  39. <p>
  40. The packages are available in .tar.gz, .tar.bz2 and .zip formats.
  41. Other sites 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 files and directories (among others):
  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/glx - sources for building libGL with full GLX and DRI support
  93. src/glw - Xt/Motif/OpenGL widget code
  94. </pre>
  95. If you downloaded and unpacked the MesaDemos.X.Y package:
  96. <pre>
  97. progs/demos - original Mesa demos
  98. progs/xdemos - GLX OpenGL/Mesa demos
  99. progs/redbook - examples from the OpenGL Programming Guide
  100. progs/samples - examples from SGI
  101. progs/images/ - image files
  102. </pre>
  103. If you downloaded and unpacked the MesaGLUT.X.Y package:
  104. <pre>
  105. src/glut - GLUT library source code
  106. </pre>
  107. <p>
  108. Proceed to the <a href="install.html">compilation and installation
  109. instructions</a>.
  110. </p>
  111. </BODY>
  112. </HTML>