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 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <HTML>
  2. <TITLE>Getting Mesa</TITLE>
  3. <BODY text="#000000" bgcolor="#55bbff" link="#111188">
  4. <H1>Downloading / Unpacking</H1>
  5. <p>
  6. Mesa can be downloaded from the
  7. <a href="http://www.sourceforge.net/projects/mesa3d" target="_parent">
  8. SourceForge download area</A>.
  9. </p>
  10. <p>
  11. Since version 2.3, Mesa is distributed in two pieces: main library code
  12. and demos. If you're upgrading from a previous version of Mesa or you're not
  13. interested in the demos you can just download the core Mesa archive file.
  14. </p>
  15. <p>
  16. Mesa is available in at least three archive formats:
  17. </p>
  18. <pre>
  19. 1. GNU zip/tar
  20. Download MesaLib-X.Y.tar.gz and optionally MesaDemos-X.Y.tar.gz
  21. Unpack with:
  22. gzcat MesaLib-X.Y.tar.gz | tar xf -
  23. gzcat MesaDemos-X.Y.tar.gz | tar xf -
  24. or
  25. gunzip MesaLib-X.Y.tar.gz ; tar xf MesaLib-X.Y.tar
  26. gunzip MesaDemos-X.Y.tar.gz ; tar xf MesaLib-X.Y.tar
  27. or
  28. tar zxf MesaLib-X.Y.tar.gz
  29. tar zxf MesaDemos-X.Y.tar.gz
  30. If you don't have gzcat try zcat instead.
  31. 2. Unix compressed/tar
  32. Download MesaLib-X.Y.tar.Z and optionally MesaDemos-X.Y.tar.Z
  33. Unpack with:
  34. zcat MesaLib-X.Y.tar.Z | tar xf -
  35. zcat MesaDemos-X.Y.tar.Z | tar xf -
  36. 3. ZIP format
  37. Download MesaLib-X.Y.zip and optionally MesaDemos-X.Y.zip
  38. Unpack with:
  39. unzip MesaLib-X.Y.zip
  40. unzip MesaDemos-X.Y.zip
  41. </pre>
  42. <p>
  43. After unpacking you'll have these directories (and more):
  44. </p>
  45. <pre>
  46. Makefile.X11 - "old" top-level Makefile for X11-based systems
  47. Make-config - system configurations used by the Makefile.X11
  48. configure - the GNU autoconf script
  49. bin/ - shell scripts for making shared libraries, etc
  50. include/ - GL header (include) files
  51. lib/ - client libraries, created during installation
  52. src/ - source code for the main libGL library
  53. si-glu/ - SGI Sample Implementation of libGLU
  54. src-glu/ - old source code for libGLU (obsolete)
  55. docs/ - documentation
  56. util/ - handly utility functions
  57. widgets-mesa/ - Mesa widgets for Xt/Motif (obsolete)
  58. widgets-sgi/ - SGI OpenGL widgets for Xt/Motif
  59. and if you downloaded and unpacked the demos:
  60. src-glut/ - source code for GLUT toolkit
  61. demos/ - GLUT demos
  62. xdemos/ - X11 and SVGA demo programs
  63. samples/ - sample OpenGL programs from SGI
  64. book/ - example programs from the OpenGL Programming Guide,
  65. converted to GLUT by Mark Kilgard, from GLUT distribution.
  66. images/ - image files
  67. </pre>
  68. <p>
  69. Proceed to <a href="install.html">compilation and installation
  70. instructions</a>.
  71. </p>
  72. <H1>GLUT</H1>
  73. <p>
  74. Mesa 2.5 and later includes Mark Kilgard's GLUT library (GL Utility Toolkit).
  75. GLUT is built automatically on systems which support it.
  76. </p>
  77. <p>
  78. The GLUT tests, demos, examples, etc are not included, just the main library.
  79. To obtain the latest complete release of GLUT please visit the
  80. <a href="http://www.opengl.org/developers/documentation/glut/index.html"
  81. target ="_parent">GLUT homepage</a>
  82. </p>
  83. </BODY>
  84. </HTML>