From a556b45abf18f1bd509daaf63b66b7d55e9fd291 Mon Sep 17 00:00:00 2001 From: jjesswan Date: Mon, 22 Apr 2024 21:56:26 -0400 Subject: add engine version --- .../sdk/docs/man/html/eglGetCurrentDisplay.xhtml | 86 ++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 engine-ocean/External/glew/auto/EGL-Registry/sdk/docs/man/html/eglGetCurrentDisplay.xhtml (limited to 'engine-ocean/External/glew/auto/EGL-Registry/sdk/docs/man/html/eglGetCurrentDisplay.xhtml') diff --git a/engine-ocean/External/glew/auto/EGL-Registry/sdk/docs/man/html/eglGetCurrentDisplay.xhtml b/engine-ocean/External/glew/auto/EGL-Registry/sdk/docs/man/html/eglGetCurrentDisplay.xhtml new file mode 100644 index 0000000..6c8a04d --- /dev/null +++ b/engine-ocean/External/glew/auto/EGL-Registry/sdk/docs/man/html/eglGetCurrentDisplay.xhtml @@ -0,0 +1,86 @@ + + + + eglGetCurrentDisplay - EGL Reference Pages + + + + +
+
+
+
+

Name

+

eglGetCurrentDisplay — + return the display for the current EGL rendering context +

+
+
+

C Specification

+
+ + + + + + +
+ EGLDisplay eglGetCurrentDisplay( + void); 
+
 
+
+
+
+

Description

+

+ eglGetCurrentDisplay returns the current + EGL display connection for the current + EGL rendering context, as specified by + eglMakeCurrent. + If no context is current, EGL_NO_DISPLAY is returned. +

+
+
+

Errors

+

+ Passing EGL_NO_DISPLAY to any command + taking an EGLDisplay parameter will generate either + an EGL_BAD_DISPLAY error if the EGL + implementation validates EGLDisplay handles, or + undefined behavior as described at the end of section 3.1 of the + EGL 1.5 Specification. The only exception to this rule is that + eglQueryString will accept an + EGLDisplay parameter of + EGL_NO_DISPLAY when querying the client + extension string (see section 3.3 of the EGL 1.5 Specification). +

+
+
+

See Also

+

+ eglGetDisplay, + eglInitialize, + eglMakeCurrent

+
+

+

+ +

+

+
+