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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 - top-level Makefile for X11-based systems
  47. Make-config - system configurations used by the Makefile.X11
  48. include/ - GL header (include) files
  49. bin/ - shell scripts for making shared libraries, etc
  50. lib/ - final client libraries, created during compilation
  51. docs/ - documentation
  52. src/ - source code for libraries
  53. src/mesa - sources for the main Mesa library and device drivers
  54. src/glu - libGLU source code
  55. src/glw - Xt/Motif/OpenGL widget code
  56. and if you downloaded and unpacked the MesaDemos.X.Y archive:
  57. src/glut - GLUT source code
  58. progs/ - OpenGL programs
  59. progs/demos - original Mesa demos
  60. progs/xdemos - GLX OpenGL/Mesa demos
  61. progs/redbook - examples from the OpenGL Programming Guide
  62. progs/samples - examples from SGI
  63. progs/images/ - image files
  64. </pre>
  65. <p>
  66. Proceed to <a href="install.html">compilation and installation
  67. instructions</a>.
  68. </p>
  69. <H1>GLUT</H1>
  70. <p>
  71. Mesa 2.5 and later includes Mark Kilgard's GLUT library (GL Utility Toolkit).
  72. GLUT is built automatically on systems which support it.
  73. </p>
  74. <p>
  75. The GLUT tests, demos, examples, etc are not included, just the main library.
  76. To obtain the latest complete release of GLUT please visit the
  77. <a href="http://www.opengl.org/resources/libraries/glut.html"
  78. target ="_parent">GLUT page</a> on www.opengl.org.
  79. </p>
  80. </BODY>
  81. </HTML>