Skip to content

Latest commit

 

History

History
109 lines (88 loc) · 3.76 KB

SDL_x11opengles.c

File metadata and controls

109 lines (88 loc) · 3.76 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
Simple DirectMedia Layer
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "SDL_config.h"
Aug 19, 2013
Aug 19, 2013
23
#if SDL_VIDEO_DRIVER_X11 && SDL_VIDEO_OPENGL_EGL
24
25
26
27
28
#include "SDL_x11video.h"
#include "SDL_x11opengles.h"
#include "SDL_x11opengl.h"
Aug 19, 2013
Aug 19, 2013
29
/* EGL implementation of SDL OpenGL support */
Aug 19, 2013
Aug 19, 2013
32
33
X11_GLES_LoadLibrary(_THIS, const char *path) {
34
35
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
Aug 29, 2013
Aug 29, 2013
36
37
/* If the profile requested is not GL ES, switch over to X11_GL functions */
if (_this->gl_config.profile_mask != SDL_GL_CONTEXT_PROFILE_ES) {
Aug 19, 2013
Aug 19, 2013
38
#if SDL_VIDEO_OPENGL_GLX
Nov 20, 2013
Nov 20, 2013
39
X11_GLES_UnloadLibrary(_this);
40
41
42
43
44
45
46
47
48
49
_this->GL_LoadLibrary = X11_GL_LoadLibrary;
_this->GL_GetProcAddress = X11_GL_GetProcAddress;
_this->GL_UnloadLibrary = X11_GL_UnloadLibrary;
_this->GL_CreateContext = X11_GL_CreateContext;
_this->GL_MakeCurrent = X11_GL_MakeCurrent;
_this->GL_SetSwapInterval = X11_GL_SetSwapInterval;
_this->GL_GetSwapInterval = X11_GL_GetSwapInterval;
_this->GL_SwapWindow = X11_GL_SwapWindow;
_this->GL_DeleteContext = X11_GL_DeleteContext;
return X11_GL_LoadLibrary(_this, path);
Aug 19, 2013
Aug 19, 2013
50
#else
51
return SDL_SetError("SDL not configured with OpenGL/GLX support");
Aug 19, 2013
Aug 19, 2013
52
#endif
Aug 19, 2013
Aug 19, 2013
54
55
return SDL_EGL_LoadLibrary(_this, path, (NativeDisplayType) data->display);
56
57
58
59
60
}
XVisualInfo *
X11_GLES_GetVisual(_THIS, Display * display, int screen)
{
Aug 19, 2013
Aug 19, 2013
61
62
XVisualInfo *egl_visualinfo = NULL;
63
EGLint visual_id;
Aug 19, 2013
Aug 19, 2013
64
65
XVisualInfo vi_in;
int out_count;
Aug 19, 2013
Aug 19, 2013
67
if (!_this->egl_data) {
68
69
70
71
/* The EGL library wasn't loaded, SDL_GetError() should have info */
return NULL;
}
Aug 19, 2013
Aug 19, 2013
72
73
74
75
if (_this->egl_data->eglGetConfigAttrib(_this->egl_data->egl_display,
_this->egl_data->egl_config,
EGL_NATIVE_VISUAL_ID,
&visual_id) == EGL_FALSE || !visual_id) {
76
77
/* Use the default visual when all else fails */
vi_in.screen = screen;
Oct 18, 2013
Oct 18, 2013
78
egl_visualinfo = X11_XGetVisualInfo(display,
Aug 19, 2013
Aug 19, 2013
79
80
VisualScreenMask,
&vi_in, &out_count);
81
82
83
} else {
vi_in.screen = screen;
vi_in.visualid = visual_id;
Oct 18, 2013
Oct 18, 2013
84
egl_visualinfo = X11_XGetVisualInfo(display, VisualScreenMask | VisualIDMask, &vi_in, &out_count);
Aug 19, 2013
Aug 19, 2013
87
return egl_visualinfo;
88
89
90
91
92
}
SDL_GLContext
X11_GLES_CreateContext(_THIS, SDL_Window * window)
{
Aug 19, 2013
Aug 19, 2013
93
SDL_GLContext context;
94
95
96
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Oct 18, 2013
Oct 18, 2013
97
X11_XSync(display, False);
Aug 19, 2013
Aug 19, 2013
98
context = SDL_EGL_CreateContext(_this, data->egl_surface);
Oct 18, 2013
Oct 18, 2013
99
X11_XSync(display, False);
100
101
102
103
return context;
}
Aug 19, 2013
Aug 19, 2013
104
105
SDL_EGL_SwapWindow_impl(X11)
SDL_EGL_MakeCurrent_impl(X11)
Aug 19, 2013
Aug 19, 2013
107
#endif /* SDL_VIDEO_DRIVER_X11 && SDL_VIDEO_OPENGL_EGL */
108
109
/* vi: set ts=4 sw=4 expandtab: */