blob: 9c3cc87d9c6faadf7ae4616ffc148e093d40778f [file] [log] [blame]
Andreas Bollecd5c7c2012-06-12 09:05:03 +02001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html lang="en">
3<head>
4 <meta http-equiv="content-type" content="text/html; charset=utf-8">
5 <title>OpenVG State Tracker</title>
6 <link rel="stylesheet" type="text/css" href="mesa.css">
7</head>
8<body>
Zack Rusin544dd4b2009-05-01 12:41:38 -04009
Andreas Bollecd5c7c2012-06-12 09:05:03 +020010<h1>OpenVG State Tracker</h1>
Zack Rusin544dd4b2009-05-01 12:41:38 -040011
12<p>
Chia-I Wu8eea0502011-06-20 11:14:56 +090013The current version of the OpenVG state tracker implements OpenVG 1.1.
Zack Rusin544dd4b2009-05-01 12:41:38 -040014</p>
15<p>
Brian Pauld6318ba2009-05-01 11:37:09 -060016More informations about OpenVG can be found at
17<a href="http://www.khronos.org/openvg/" target="_parent">
18http://www.khronos.org/openvg/</a> .
Zack Rusin544dd4b2009-05-01 12:41:38 -040019</p>
20<p>
21The OpenVG state tracker depends on the Gallium architecture and a working EGL implementation.
Chia-I Wu1af67192010-01-21 15:29:28 +080022Please refer to <a href="egl.html">Mesa EGL</a> for more information about EGL.
Zack Rusin544dd4b2009-05-01 12:41:38 -040023</p>
24
25
26<h2>Building the library</h2>
27<ol>
Chia-I Wu8eea0502011-06-20 11:14:56 +090028<li>Run <code>configure</code> with <code>--enable-openvg</code> and
29<code>--enable-gallium-egl</code>. If you do not need OpenGL, you can add
30<code>--disable-opengl</code> to save the compilation time.</li>
Chia-I Wuc6320c52010-10-28 17:25:07 +080031
32<li>Build and install Mesa as usual.</li>
Zack Rusin544dd4b2009-05-01 12:41:38 -040033</ol>
34
35<h3>Sample build</h3>
36A sample build looks as follows:
37<pre>
Chia-I Wu8eea0502011-06-20 11:14:56 +090038 $ ./configure --disable-opengl --enable-openvg --enable-gallium-egl
Chia-I Wu1af67192010-01-21 15:29:28 +080039 $ make
40 $ make install
Zack Rusin544dd4b2009-05-01 12:41:38 -040041</pre>
42
Chia-I Wuc6320c52010-10-28 17:25:07 +080043<p>It will install <code>libOpenVG.so</code>, <code>libEGL.so</code>, and one
44or more EGL drivers.</p>
45
Brian Pauld6318ba2009-05-01 11:37:09 -060046<h2>OpenVG Demos</h2>
47
Chia-I Wuc6320c52010-10-28 17:25:07 +080048<p>OpenVG demos can be found in mesa/demos repository.</p>
Brian Pauld6318ba2009-05-01 11:37:09 -060049
Zack Rusin544dd4b2009-05-01 12:41:38 -040050</body>
51</html>