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/eglQueryAPI.xhtml | 107 +++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 engine-ocean/External/glew/auto/EGL-Registry/sdk/docs/man/html/eglQueryAPI.xhtml (limited to 'engine-ocean/External/glew/auto/EGL-Registry/sdk/docs/man/html/eglQueryAPI.xhtml') diff --git a/engine-ocean/External/glew/auto/EGL-Registry/sdk/docs/man/html/eglQueryAPI.xhtml b/engine-ocean/External/glew/auto/EGL-Registry/sdk/docs/man/html/eglQueryAPI.xhtml new file mode 100644 index 0000000..45e5a80 --- /dev/null +++ b/engine-ocean/External/glew/auto/EGL-Registry/sdk/docs/man/html/eglQueryAPI.xhtml @@ -0,0 +1,107 @@ + + + + eglQueryAPI - EGL Reference Pages + + + + +
+
+
+
+

Name

+

eglQueryAPI — Query the current rendering API

+
+
+

C Specification

+
+ + + + + + +
+ EGLenum eglQueryAPI( + void); 
+
 
+
+
+
+

Description

+

+ eglQueryAPI returns the value of the + current rendering API for EGL in the thread it is called + from. The current rendering API is set by + eglBindAPI, + and affects the behavior of other EGL commands. +

+

+ The value returned will be one of the valid + api parameters to + eglBindAPI, or + EGL_NONE. +

+
+
+

Notes

+

+ eglQueryAPI is supported only if the + EGL version is 1.2 or greater. +

+

+ The initial value of the current rendering API is + EGL_OPENGL_ES_API unless OpenGL ES is + not supported by an implementation, in which case the + initial value is EGL_NONE (however, + EGL_NONE is not a valid + api parameter to + eglQueryAPI). +

+

+ The current rendering API can be changed by calling + eglBindAPI. +

+
+
+

Errors

+

+ None. +

+
+ +

+

+ +

+

+
+