2012-06-12 09:05:03 +02:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
|
|
<title>Getting Mesa</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="mesa.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2003-03-08 17:38:57 +00:00
|
|
|
|
2012-09-18 18:57:02 +02:00
|
|
|
<div class="header">
|
|
|
|
<h1>The Mesa 3D Graphics Library</h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<iframe src="contents.html"></iframe>
|
|
|
|
<div class="content">
|
|
|
|
|
2012-06-12 09:05:03 +02:00
|
|
|
<h1>Downloading</h1>
|
2003-03-08 17:38:57 +00:00
|
|
|
|
|
|
|
<p>
|
2009-09-03 15:44:49 -06:00
|
|
|
Primary Mesa download site:
|
2016-03-29 12:54:10 -06:00
|
|
|
<a href="ftp://ftp.freedesktop.org/pub/mesa/">ftp.freedesktop.org</a> (FTP)
|
|
|
|
or <a href="https://mesa.freedesktop.org/archive/">mesa.freedesktop.org</a>
|
|
|
|
(HTTP).
|
2003-03-08 17:38:57 +00:00
|
|
|
</p>
|
|
|
|
|
2017-02-08 04:27:00 -07:00
|
|
|
<p>
|
|
|
|
Starting with the first release of 2017, Mesa's version scheme is
|
|
|
|
year-based. Filenames are in the form <tt>mesa-Y.N.P.tar.gz</tt>, where
|
|
|
|
<tt>Y</tt> is the year (two digits), <tt>N</tt> is an incremental number
|
|
|
|
(starting at 0) and <tt>P</tt> is the patch number (0 for the first
|
|
|
|
release, 1 for the first patch after that).
|
|
|
|
</p>
|
|
|
|
|
2008-06-21 10:14:22 -06:00
|
|
|
<p>
|
2009-09-03 15:44:49 -06:00
|
|
|
When a new release is coming, release candidates (betas) may be found
|
2017-02-08 04:27:00 -07:00
|
|
|
in the same directory, and are recognisable by the
|
|
|
|
<tt>mesa-Y.N.P-<b>rc</b>X.tar.gz</tt> filename.
|
2008-06-21 10:14:22 -06:00
|
|
|
</p>
|
|
|
|
|
2005-09-10 16:57:22 +00:00
|
|
|
|
2012-06-12 09:05:36 +02:00
|
|
|
<h1>Unpacking</h1>
|
2012-04-19 08:56:02 -06:00
|
|
|
|
2005-09-10 16:57:22 +00:00
|
|
|
<p>
|
2017-02-08 04:27:00 -07:00
|
|
|
Mesa releases are available in two formats: <tt>.tar.xz</tt> and <tt>.tar.gz</tt>.
|
2006-07-12 20:14:43 +00:00
|
|
|
</p>
|
|
|
|
|
2005-09-10 16:57:22 +00:00
|
|
|
<p>
|
2017-02-08 04:27:00 -07:00
|
|
|
To unpack the tarball:
|
2005-09-10 16:57:22 +00:00
|
|
|
<pre>
|
2017-02-08 04:27:00 -07:00
|
|
|
tar xf mesa-Y.N.P.tar.xz
|
2005-09-10 16:57:22 +00:00
|
|
|
</pre>
|
|
|
|
or
|
2003-03-08 17:38:57 +00:00
|
|
|
<pre>
|
2017-02-08 04:27:00 -07:00
|
|
|
tar xf mesa-Y.N.P.tar.gz
|
2003-03-08 17:38:57 +00:00
|
|
|
</pre>
|
2011-04-04 11:16:51 -06:00
|
|
|
</p>
|
2005-09-10 16:57:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
<h1>Contents</h1>
|
2003-03-08 17:38:57 +00:00
|
|
|
|
|
|
|
<p>
|
2006-07-12 20:14:43 +00:00
|
|
|
After unpacking you'll have these files and directories (among others):
|
2003-03-08 17:38:57 +00:00
|
|
|
</p>
|
|
|
|
<pre>
|
2017-02-08 04:27:00 -07:00
|
|
|
autogen.sh - Autoconf script for *nix systems
|
|
|
|
scons/ - SCons script for Windows builds
|
2003-03-08 17:38:57 +00:00
|
|
|
include/ - GL header (include) files
|
2003-09-03 23:04:31 +00:00
|
|
|
bin/ - shell scripts for making shared libraries, etc
|
2003-03-08 17:38:57 +00:00
|
|
|
docs/ - documentation
|
2003-09-03 23:04:31 +00:00
|
|
|
src/ - source code for libraries
|
|
|
|
src/mesa - sources for the main Mesa library and device drivers
|
2011-04-04 11:16:51 -06:00
|
|
|
src/gallium - sources for Gallium and Gallium drivers
|
2006-07-12 20:14:43 +00:00
|
|
|
src/glx - sources for building libGL with full GLX and DRI support
|
2005-09-10 16:57:22 +00:00
|
|
|
</pre>
|
2003-09-03 23:04:31 +00:00
|
|
|
|
2003-03-08 17:38:57 +00:00
|
|
|
|
|
|
|
<p>
|
2005-09-10 16:57:22 +00:00
|
|
|
Proceed to the <a href="install.html">compilation and installation
|
2003-03-08 17:38:57 +00:00
|
|
|
instructions</a>.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
2012-08-23 16:39:20 -07:00
|
|
|
<h1>Demos, GLUT, and GLU</h1>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
A package of SGI's GLU library is available
|
2012-09-18 19:31:28 +02:00
|
|
|
<a href="ftp://ftp.freedesktop.org/pub/mesa/glu/">here</a>
|
2012-08-23 16:39:20 -07:00
|
|
|
</p>
|
2012-04-19 08:56:02 -06:00
|
|
|
|
|
|
|
<p>
|
|
|
|
A package of Mark Kilgard's GLUT library is available
|
2012-09-18 19:31:28 +02:00
|
|
|
<a href="ftp://ftp.freedesktop.org/pub/mesa/glut/">here</a>
|
2012-04-19 08:56:02 -06:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
The Mesa demos collection is available
|
2012-09-18 19:31:28 +02:00
|
|
|
<a href="ftp://ftp.freedesktop.org/pub/mesa/demos/">here</a>
|
2012-04-19 08:56:02 -06:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2012-08-23 16:39:20 -07:00
|
|
|
In the past, GLUT, GLU and the Mesa demos were released in conjunction with
|
|
|
|
Mesa releases. But since GLUT, GLU and the demos change infrequently, they
|
|
|
|
were split off into their own git repositories:
|
|
|
|
|
2017-02-09 02:10:17 +00:00
|
|
|
<a href="https://cgit.freedesktop.org/mesa/glut/">GLUT</a>,
|
|
|
|
<a href="https://cgit.freedesktop.org/mesa/glu/">GLU</a> and
|
|
|
|
<a href="https://cgit.freedesktop.org/mesa/demos/">Demos</a>,
|
2012-04-19 08:56:02 -06:00
|
|
|
</p>
|
|
|
|
|
2012-09-18 18:57:02 +02:00
|
|
|
</div>
|
2012-06-12 09:05:03 +02:00
|
|
|
</body>
|
|
|
|
</html>
|