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

Name

+

eglGetCurrentSurface — + return the read or draw surface for the current EGL rendering context +

+
+
+

C Specification

+
+ + + + + +
+ EGLSurface eglGetCurrentSurface( + EGLint readdraw);
+
 
+
+
+
+

Parameters

+
+
+
+ + + readdraw + + +
+
+

+ Specifies whether to return the read surface + (EGL_READ) or the draw surface + (EGL_DRAW). +

+
+
+
+
+
+

Description

+

+ eglGetCurrentSurface returns the read or draw + surface attached to the current + EGL rendering context, as specified by + eglMakeCurrent. + If no context is current, EGL_NO_SURFACE is returned. +

+
+ +

+

+ +

+

+
+