eglQueryString - return a string describing an EGL display connection
char const * eglQueryString(EGLDisplay display, EGLint name)
displaySpecifies the EGL display connection.
nameSpecifies a symbolic constant, one of EGL_VENDOR, EGL_VERSION, or EGL_EXTENSIONS.
eglQueryString returns a pointer to a static string describing an EGL display connection. name can be one of the following:
EGL_VENDORReturns the company responsible for this EGL implementation. This name does not change from release to release.
EGL_VERSIONReturns a version or release number. The EGL_VERSION string is laid out as follows:
major_version.minor_version space vendor_specific_info
EGL_EXTENSIONSReturns a space separated list of supported extensions to EGL.
NULL is returned on failure.
EGL_BAD_DISPLAY is generated if display is not an EGL display connection.
EGL_NOT_INITIALIZED is generated if display has not been initialized.
EGL_BAD_PARAMETER is generated if name is not an accepted value.
Copyright © 2003 Silicon Graphics, Inc.
This document is licensed under the SGI Free Software B License. For details, see http://oss.sgi.com/projects/FreeB/.