Clone of mesa.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

openvg.html 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!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>
  9. <div class="header">
  10. <h1>The Mesa 3D Graphics Library</h1>
  11. </div>
  12. <iframe src="contents.html"></iframe>
  13. <div class="content">
  14. <h1>OpenVG State Tracker</h1>
  15. <p>
  16. The current version of the OpenVG state tracker implements OpenVG 1.1.
  17. </p>
  18. <p>
  19. More informations about OpenVG can be found at
  20. <a href="http://www.khronos.org/openvg/">
  21. http://www.khronos.org/openvg/</a> .
  22. </p>
  23. <p>
  24. The OpenVG state tracker depends on the Gallium architecture and a working EGL implementation.
  25. Please refer to <a href="egl.html">Mesa EGL</a> for more information about EGL.
  26. </p>
  27. <h2>Building the library</h2>
  28. <ol>
  29. <li>Run <code>configure</code> with <code>--enable-openvg</code> and
  30. <code>--enable-gallium-egl</code>. If you do not need OpenGL, you can add
  31. <code>--disable-opengl</code> to save the compilation time.</li>
  32. <li>Build and install Mesa as usual.</li>
  33. </ol>
  34. <h3>Sample build</h3>
  35. A sample build looks as follows:
  36. <pre>
  37. $ ./configure --disable-opengl --enable-openvg --enable-gallium-egl
  38. $ make
  39. $ make install
  40. </pre>
  41. <p>It will install <code>libOpenVG.so</code>, <code>libEGL.so</code>, and one
  42. or more EGL drivers.</p>
  43. <h2>OpenVG Demos</h2>
  44. <p>OpenVG demos can be found in mesa/demos repository.</p>
  45. </div>
  46. </body>
  47. </html>