diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/egl.html | 12 | ||||
-rw-r--r-- | docs/releasing.html | 2 |
2 files changed, 6 insertions, 8 deletions
diff --git a/docs/egl.html b/docs/egl.html index 17823c2b0fa..f072ce1a045 100644 --- a/docs/egl.html +++ b/docs/egl.html @@ -77,15 +77,13 @@ drivers will be installed to <code>${libdir}/egl</code>.</p> </dd> -<dt><code>--with-egl-platforms</code></dt> +<dt><code>--with-platforms</code></dt> <dd> <p>List the platforms (window systems) to support. Its argument is a comma -separated string such as <code>--with-egl-platforms=x11,drm</code>. It decides +separated string such as <code>--with-platforms=x11,drm</code>. It decides the platforms a driver may support. The first listed platform is also used by -the main library to decide the native platform: this defines EGL native -types such as <code>EGLNativeDisplayType</code> or -<code>EGLNativeWindowType</code>.</p> +the main library to decide the native platform.</p> <p>The available platforms are <code>x11</code>, <code>drm</code>, <code>wayland</code>, <code>surfaceless</code>, <code>android</code>, @@ -167,9 +165,9 @@ binaries.</p> <dd> <p>This variable specifies the native platform. The valid values are the same -as those for <code>--with-egl-platforms</code>. When the variable is not set, +as those for <code>--with-platforms</code>. When the variable is not set, the main library uses the first platform listed in -<code>--with-egl-platforms</code> as the native platform.</p> +<code>--with-platforms</code> as the native platform.</p> <p>Extensions like <code>EGL_MESA_drm_display</code> define new functions to create displays for non-native platforms. These extensions are usually used by diff --git a/docs/releasing.html b/docs/releasing.html index e2206b539a9..38d59f6debb 100644 --- a/docs/releasing.html +++ b/docs/releasing.html @@ -460,7 +460,7 @@ Here is one solution that I've been using. --enable-glx-tls \ --enable-gbm \ --enable-egl \ - --with-egl-platforms=x11,drm,wayland + --with-platforms=x11,drm,wayland make -j2 && DESTDIR=`pwd`/test make -j6 install __glxinfo_cmd='glxinfo 2>&1 | egrep -o "Mesa.*|Gallium.*|.*dri\.so"' __glxgears_cmd='glxgears 2>&1 | grep -v "configuration file"' |