2020-06-12 18:09:42 +00:00
|
|
|
OpenGL ES
|
|
|
|
=========
|
|
|
|
|
|
|
|
Mesa implements OpenGL ES 1.1 and OpenGL ES 2.0. More information about
|
|
|
|
OpenGL ES can be found at https://www.khronos.org/opengles/.
|
|
|
|
|
2020-06-15 10:31:36 +00:00
|
|
|
OpenGL ES depends on a working EGL implementation. Please refer to
|
|
|
|
:doc:`Mesa EGL <egl>` for more information about EGL.
|
2020-06-12 18:09:42 +00:00
|
|
|
|
|
|
|
Build the Libraries
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
#. Run ``meson configure`` with ``-D gles1=true -D gles2=true`` and
|
|
|
|
enable the Gallium driver for your hardware.
|
|
|
|
#. Build and install Mesa as usual.
|
|
|
|
|
|
|
|
Alternatively, if XCB-DRI2 is installed on the system, one can use
|
|
|
|
``egl_dri2`` EGL driver with OpenGL|ES-enabled DRI drivers
|
|
|
|
|
|
|
|
#. Run ``meson configure`` with ``-D gles1=true -D gles2=true``.
|
|
|
|
#. Build and install Mesa as usual.
|
|
|
|
|
|
|
|
Both methods will install libGLESv1_CM, libGLESv2, libEGL, and one or
|
|
|
|
more EGL drivers for your hardware.
|
|
|
|
|
|
|
|
Run the Demos
|
|
|
|
-------------
|
|
|
|
|
|
|
|
There are some demos in ``mesa/demos`` repository.
|