Skip to content

Latest commit

 

History

History
108 lines (87 loc) · 3.72 KB

SDL_x11opengles.c

File metadata and controls

108 lines (87 loc) · 3.72 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
39
40
41
42
43
44
45
46
47
48
_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
49
#else
50
return SDL_SetError("SDL not configured with OpenGL/GLX support");
Aug 19, 2013
Aug 19, 2013
51
#endif
Aug 19, 2013
Aug 19, 2013
53
54
return SDL_EGL_LoadLibrary(_this, path, (NativeDisplayType) data->display);
55
56
57
58
59
}
XVisualInfo *
X11_GLES_GetVisual(_THIS, Display * display, int screen)
{
Aug 19, 2013
Aug 19, 2013
60
61
XVisualInfo *egl_visualinfo = NULL;
62
EGLint visual_id;
Aug 19, 2013
Aug 19, 2013
63
64
XVisualInfo vi_in;
int out_count;
Aug 19, 2013
Aug 19, 2013
66
if (!_this->egl_data) {
67
68
69
70
/* The EGL library wasn't loaded, SDL_GetError() should have info */
return NULL;
}
Aug 19, 2013
Aug 19, 2013
71
72
73
74
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) {
75
76
/* Use the default visual when all else fails */
vi_in.screen = screen;
Oct 18, 2013
Oct 18, 2013
77
egl_visualinfo = X11_XGetVisualInfo(display,
Aug 19, 2013
Aug 19, 2013
78
79
VisualScreenMask,
&vi_in, &out_count);
80
81
82
} else {
vi_in.screen = screen;
vi_in.visualid = visual_id;
Oct 18, 2013
Oct 18, 2013
83
egl_visualinfo = X11_XGetVisualInfo(display, VisualScreenMask | VisualIDMask, &vi_in, &out_count);
Aug 19, 2013
Aug 19, 2013
86
return egl_visualinfo;
87
88
89
90
91
}
SDL_GLContext
X11_GLES_CreateContext(_THIS, SDL_Window * window)
{
Aug 19, 2013
Aug 19, 2013
92
SDL_GLContext context;
93
94
95
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
Display *display = data->videodata->display;
Oct 18, 2013
Oct 18, 2013
96
X11_XSync(display, False);
Aug 19, 2013
Aug 19, 2013
97
context = SDL_EGL_CreateContext(_this, data->egl_surface);
Oct 18, 2013
Oct 18, 2013
98
X11_XSync(display, False);
99
100
101
102
return context;
}
Aug 19, 2013
Aug 19, 2013
103
104
SDL_EGL_SwapWindow_impl(X11)
SDL_EGL_MakeCurrent_impl(X11)
Aug 19, 2013
Aug 19, 2013
106
#endif /* SDL_VIDEO_DRIVER_X11 && SDL_VIDEO_OPENGL_EGL */
107
108
/* vi: set ts=4 sw=4 expandtab: */