SDL  2.0
SDL_egl_c.h
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 #include "../SDL_internal.h"
22 
23 #ifndef SDL_egl_h_
24 #define SDL_egl_h_
25 
26 #if SDL_VIDEO_OPENGL_EGL
27 
28 #include "SDL_egl.h"
29 
30 #include "SDL_sysvideo.h"
31 
32 typedef struct SDL_EGL_VideoData
33 {
34  void *egl_dll_handle, *dll_handle;
35  EGLDisplay egl_display;
36  EGLConfig egl_config;
37  int egl_swapinterval;
38 
41  void *native_display,
42  const EGLint *attrib_list);
43  EGLDisplay(EGLAPIENTRY *eglGetPlatformDisplayEXT) (EGLenum platform,
44  void *native_display,
45  const EGLint *attrib_list);
47  EGLint * minor);
49 
50  void *(EGLAPIENTRY *eglGetProcAddress) (const char * procName);
51 
53  const EGLint * attrib_list,
54  EGLConfig * configs,
55  EGLint config_size, EGLint * num_config);
56 
59  EGLContext share_list,
60  const EGLint * attrib_list);
61 
63 
67  const EGLint * attrib_list);
69 
71  EGLSurface read, EGLContext ctx);
72 
74 
76 
77  const char *(EGLAPIENTRY *eglQueryString) (EGLDisplay dpy, EGLint name);
78 
81 
83 
85 
87 
89 
90 } SDL_EGL_VideoData;
91 
92 /* OpenGLES functions */
93 extern int SDL_EGL_GetAttribute(_THIS, SDL_GLattr attrib, int *value);
94 /* SDL_EGL_LoadLibrary can get a display for a specific platform (EGL_PLATFORM_*)
95  * or, if 0 is passed, let the implementation decide.
96  */
97 extern int SDL_EGL_LoadLibrary(_THIS, const char *path, NativeDisplayType native_display, EGLenum platform);
98 extern void *SDL_EGL_GetProcAddress(_THIS, const char *proc);
99 extern void SDL_EGL_UnloadLibrary(_THIS);
100 extern int SDL_EGL_ChooseConfig(_THIS);
101 extern int SDL_EGL_SetSwapInterval(_THIS, int interval);
102 extern int SDL_EGL_GetSwapInterval(_THIS);
103 extern void SDL_EGL_DeleteContext(_THIS, SDL_GLContext context);
104 extern EGLSurface *SDL_EGL_CreateSurface(_THIS, NativeWindowType nw);
105 extern void SDL_EGL_DestroySurface(_THIS, EGLSurface egl_surface);
106 
107 /* These need to be wrapped to get the surface for the window by the platform GLES implementation */
108 extern SDL_GLContext SDL_EGL_CreateContext(_THIS, EGLSurface egl_surface);
109 extern int SDL_EGL_MakeCurrent(_THIS, EGLSurface egl_surface, SDL_GLContext context);
110 extern int SDL_EGL_SwapBuffers(_THIS, EGLSurface egl_surface);
111 
112 /* SDL Error-reporting */
113 extern int SDL_EGL_SetErrorEx(const char * message, const char * eglFunctionName, EGLint eglErrorCode);
114 #define SDL_EGL_SetError(message, eglFunctionName) SDL_EGL_SetErrorEx(message, eglFunctionName, _this->egl_data->eglGetError())
115 
116 /* A few of useful macros */
117 
118 #define SDL_EGL_SwapWindow_impl(BACKEND) int \
119 BACKEND ## _GLES_SwapWindow(_THIS, SDL_Window * window) \
120 {\
121  return SDL_EGL_SwapBuffers(_this, ((SDL_WindowData *) window->driverdata)->egl_surface);\
122 }
123 
124 #define SDL_EGL_MakeCurrent_impl(BACKEND) int \
125 BACKEND ## _GLES_MakeCurrent(_THIS, SDL_Window * window, SDL_GLContext context) \
126 {\
127  if (window && context) { \
128  return SDL_EGL_MakeCurrent(_this, ((SDL_WindowData *) window->driverdata)->egl_surface, context); \
129  }\
130  else {\
131  return SDL_EGL_MakeCurrent(_this, NULL, NULL);\
132  }\
133 }
134 
135 #define SDL_EGL_CreateContext_impl(BACKEND) SDL_GLContext \
136 BACKEND ## _GLES_CreateContext(_THIS, SDL_Window * window) \
137 {\
138  return SDL_EGL_CreateContext(_this, ((SDL_WindowData *) window->driverdata)->egl_surface);\
139 }
140 
141 #endif /* SDL_VIDEO_OPENGL_EGL */
142 
143 #endif /* SDL_egl_h_ */
144 
145 /* vi: set ts=4 sw=4 expandtab: */
EGLAPI EGLBoolean EGLAPIENTRY eglTerminate(EGLDisplay dpy)
EGLAPI const char *EGLAPIENTRY eglQueryString(EGLDisplay dpy, EGLint name)
void * EGLSurface
Definition: egl.h:59
EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
EGLenum const EGLAttribKHR * attrib_list
Definition: eglext.h:63
EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list)
void * EGLConfig
Definition: egl.h:58
EGLAPI EGLBoolean EGLAPIENTRY eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx)
GLuint GLsizei const GLchar * message
return Display return Display Bool Bool int int int return Display XEvent Bool(*) XPointer return Display return Display dpy)
Definition: SDL_x11sym.h:44
EGLSurface surface
Definition: eglext.h:248
static screen_context_t context
Definition: video.c:25
EGLAPI EGLint EGLAPIENTRY eglGetError(void)
EGLAPI __eglMustCastToProperFunctionPointerType EGLAPIENTRY eglGetProcAddress(const char *procname)
void * EGLDisplay
Definition: egl.h:55
EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value)
EGLAPI EGLBoolean EGLAPIENTRY eglBindAPI(EGLenum api)
unsigned int EGLenum
Definition: egl.h:171
GLuint const GLchar * name
unsigned int EGLBoolean
Definition: egl.h:54
EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config)
EGLNativeWindowType NativeWindowType
Definition: eglplatform.h:112
EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
SDL_GLattr
OpenGL configuration attributes.
Definition: SDL_video.h:178
void * EGLContext
Definition: egl.h:60
#define EGLAPIENTRY
Definition: eglplatform.h:54
void * SDL_GLContext
An opaque handle to an OpenGL context.
Definition: SDL_video.h:173
void * native_display
Definition: eglext.h:789
#define _THIS
khronos_int32_t EGLint
Definition: eglplatform.h:122
GLsizei const GLfloat * value
EGLAPI EGLDisplay EGLAPIENTRY eglGetDisplay(EGLNativeDisplayType display_id)
EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers(EGLDisplay dpy, EGLSurface surface)
EGLSurface EGLNativeWindowType * window
Definition: eglext.h:1025
SDL_PRINTF_FORMAT_STRING const char int SDL_PRINTF_FORMAT_STRING const char int SDL_PRINTF_FORMAT_STRING const char int SDL_PRINTF_FORMAT_STRING const char const char SDL_SCANF_FORMAT_STRING const char return SDL_ThreadFunction const char void return Uint32 return Uint32 void
EGLConfig config
Definition: eglext.h:433
EGLAPI EGLBoolean EGLAPIENTRY eglWaitGL(void)
EGLAPI EGLBoolean EGLAPIENTRY eglSwapInterval(EGLDisplay dpy, EGLint interval)
EGLNativeDisplayType NativeDisplayType
Definition: eglplatform.h:110
EGLAPI EGLBoolean EGLAPIENTRY eglWaitNative(EGLint engine)
GLsizei const GLchar *const * path
EGLSurface EGLint attribute
Definition: eglext.h:263
EGLAPI EGLDisplay EGLAPIENTRY eglGetPlatformDisplay(EGLenum platform, void *native_display, const EGLAttrib *attrib_list)
EGLAPI EGLContext EGLAPIENTRY eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list)
EGLAPI EGLBoolean EGLAPIENTRY eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
EGLContext ctx
Definition: eglext.h:208