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

Name

+

eglCreateWindowSurface — + create a new EGL window surface +

+
+
+

C Specification

+
+ + + + + + + + + + + + + + + + + +
+ EGLSurface eglCreateWindowSurface( + EGLDisplay display,
 EGLConfig config,
 NativeWindowType native_window,
 EGLint const * attrib_list);
+
 
+
+
+
+

Parameters

+
+
+
+ + + display + + +
+
+

Specifies the EGL display connection.

+
+
+ + + config + + +
+
+

Specifies the EGL frame buffer configuration that defines the + frame buffer resource available to the surface.

+
+
+ + + native_window + + +
+
+

Specifies the native window.

+
+
+ + + attrib_list + + +
+
+

+ Specifies window surface attributes. + May be NULL or empty + (first attribute is EGL_NONE). +

+
+
+
+
+
+

Description

+

+ eglCreateWindowSurface creates an on-screen + EGL window surface and returns a handle to it. The behavior of + eglCreateWindowSurface is identical to that + of + eglCreatePlatformWindowSurface + except that the set of platforms to which + display is permitted to belong, as well + as the actual type of native_window, are + implementation specific. +

+
+
+

Errors

+

+ See errors for + eglCreatePlatformWindowSurface. +

+
+ +

+

+ +

+

+
+