Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <HTML>
  2. <TITLE>OpenVG State Tracker</TITLE>
  3. <head><link rel="stylesheet" type="text/css" href="mesa.css"></head>
  4. <BODY>
  5. <body bgcolor="#eeeeee">
  6. <H1>OpenVG State Tracker</H1>
  7. <p>
  8. The current version of the OpenVG state tracker implements OpenVG 1.0.
  9. </p>
  10. <p>
  11. More informations about OpenVG can be found at
  12. <a href="http://www.khronos.org/openvg/" target="_parent">
  13. http://www.khronos.org/openvg/</a> .
  14. </p>
  15. <p>
  16. The OpenVG state tracker depends on the Gallium architecture and a working EGL implementation.
  17. Please refer to <a href="egl.html">Mesa EGL</a> for more information about EGL.
  18. </p>
  19. <h2>Building the library</h2>
  20. <ol>
  21. <li>Build Mesa3D with Gallium3D. Any build that builds Gallium3D libraries, EGL, and Gallium EGL drivers will suffice</li>
  22. <li>cd src/gallium/state_trackers/vega; make</li>
  23. <li>The last step will build libOpenVG library. You can add the libdir to LD_LIBRARY_PATH or install libOpenVG</li>
  24. </ol>
  25. <h3>Sample build</h3>
  26. A sample build looks as follows:
  27. <pre>
  28. $ ./configure --with-state-trackers=egl,vega --enable-gallium-intel
  29. $ make
  30. $ make install
  31. </pre>
  32. <h2>OpenVG Demos</h2>
  33. <p>
  34. To build the OpenVG demos:
  35. </p>
  36. <pre>
  37. cd progs/openvg
  38. make
  39. </pre>
  40. <p>
  41. To run a demo:
  42. </p>
  43. <pre>
  44. cd openvg/demos
  45. ./lion
  46. </pre>
  47. </body>
  48. </html>