From: Chia-I Wu
Date: Thu, 9 Sep 2010 05:51:59 +0000 (+0800)
Subject: docs: Update egl.html.
X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=68071822f74384053905d7e5821de8b293f453eb;p=mesa.git
docs: Update egl.html.
Mention that EGL_DRIVERS_PATH should be specified for uninstalled build.
Update TODOs.
---
diff --git a/docs/egl.html b/docs/egl.html
index a6cd111f875..47582672944 100644
--- a/docs/egl.html
+++ b/docs/egl.html
@@ -139,6 +139,10 @@ binaries.
specified EGL driver to be loaded. It comes in handy when one wants to test a
specific driver. This variable is ignored for setuid/setgid binaries.
+egl_gallium dynamically loads hardware drivers and client API
+modules found in EGL_DRIVERS_PATH. Thus, specifying this variable
+alone is not sufficient for egl_gallium for uninstalled build.
+
EGL_PLATFORM
@@ -291,8 +295,12 @@ should as well lock the display before using it.
- Pass the conformance tests
-- Better automatic driver selection:
EGL_PLATFORM loads all
-drivers and might eat too much memory.
+- Reference counting in main library?
+- Mixed use of OpenGL, OpenGL ES 1.1, and OpenGL ES 2.0 is supported. But
+which one of
libGL.so, libGLESv1_CM.so, and
+libGLESv2.so should an application link to? Bad things may happen
+when, say, an application is linked to libGLESv2.so and
+libcairo, which is linked to libGL.so instead.