2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* context_gl_x11.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2019-01-01 12:53:14 +01:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "context_gl_x11.h"
|
|
|
|
|
|
|
|
#ifdef X11_ENABLED
|
2017-10-13 00:18:04 +02:00
|
|
|
#if defined(OPENGL_ENABLED)
|
2014-02-10 02:10:30 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2017-03-05 16:44:50 +01:00
|
|
|
#include <unistd.h>
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-06-06 03:25:01 +02:00
|
|
|
#define GLX_GLXEXT_PROTOTYPES
|
2014-02-10 02:10:30 +01:00
|
|
|
#include <GL/glx.h>
|
2016-06-06 03:25:01 +02:00
|
|
|
#include <GL/glxext.h>
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
#define GLX_CONTEXT_MAJOR_VERSION_ARB 0x2091
|
|
|
|
#define GLX_CONTEXT_MINOR_VERSION_ARB 0x2092
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
typedef GLXContext (*GLXCREATECONTEXTATTRIBSARBPROC)(Display *, GLXFBConfig, GLXContext, Bool, const int *);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
struct ContextGL_X11_Private {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
::GLXContext glx_context;
|
|
|
|
};
|
|
|
|
|
|
|
|
void ContextGL_X11::release_current() {
|
|
|
|
|
|
|
|
glXMakeCurrent(x11_display, None, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextGL_X11::make_current() {
|
|
|
|
|
|
|
|
glXMakeCurrent(x11_display, x11_window, p->glx_context);
|
|
|
|
}
|
2015-10-25 15:15:56 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void ContextGL_X11::swap_buffers() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
glXSwapBuffers(x11_display, x11_window);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2015-10-25 15:15:56 +01:00
|
|
|
|
2016-11-23 00:51:56 +01:00
|
|
|
static bool ctxErrorOccurred = false;
|
2017-03-05 16:44:50 +01:00
|
|
|
static int ctxErrorHandler(Display *dpy, XErrorEvent *ev) {
|
|
|
|
ctxErrorOccurred = true;
|
|
|
|
return 0;
|
2016-11-23 00:51:56 +01:00
|
|
|
}
|
|
|
|
|
2017-08-18 20:39:51 +02:00
|
|
|
static void set_class_hint(Display *p_display, Window p_window) {
|
|
|
|
XClassHint *classHint;
|
|
|
|
|
|
|
|
/* set the name and class hints for the window manager to use */
|
|
|
|
classHint = XAllocClassHint();
|
|
|
|
if (classHint) {
|
|
|
|
classHint->res_name = (char *)"Godot_Engine";
|
|
|
|
classHint->res_class = (char *)"Godot";
|
|
|
|
}
|
|
|
|
XSetClassHint(p_display, p_window, classHint);
|
|
|
|
XFree(classHint);
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Error ContextGL_X11::initialize() {
|
|
|
|
|
2017-01-14 12:26:56 +01:00
|
|
|
//const char *extensions = glXQueryExtensionsString(x11_display, DefaultScreen(x11_display));
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-08-21 21:15:36 +02:00
|
|
|
GLXCREATECONTEXTATTRIBSARBPROC glXCreateContextAttribsARB = (GLXCREATECONTEXTATTRIBSARBPROC)glXGetProcAddress((const GLubyte *)"glXCreateContextAttribsARB");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ERR_FAIL_COND_V(!glXCreateContextAttribsARB, ERR_UNCONFIGURED);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
static int visual_attribs[] = {
|
2017-03-05 16:44:50 +01:00
|
|
|
GLX_RENDER_TYPE, GLX_RGBA_BIT,
|
|
|
|
GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT,
|
|
|
|
GLX_DOUBLEBUFFER, true,
|
|
|
|
GLX_RED_SIZE, 1,
|
|
|
|
GLX_GREEN_SIZE, 1,
|
|
|
|
GLX_BLUE_SIZE, 1,
|
|
|
|
GLX_DEPTH_SIZE, 24,
|
|
|
|
None
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2017-12-10 19:38:26 +01:00
|
|
|
static int visual_attribs_layered[] = {
|
|
|
|
GLX_RENDER_TYPE, GLX_RGBA_BIT,
|
|
|
|
GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT,
|
|
|
|
GLX_DOUBLEBUFFER, true,
|
|
|
|
GLX_RED_SIZE, 8,
|
|
|
|
GLX_GREEN_SIZE, 8,
|
|
|
|
GLX_BLUE_SIZE, 8,
|
|
|
|
GLX_ALPHA_SIZE, 8,
|
|
|
|
GLX_DEPTH_SIZE, 24,
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int fbcount;
|
2018-08-25 00:04:25 +02:00
|
|
|
GLXFBConfig fbconfig = 0;
|
2017-12-10 19:38:26 +01:00
|
|
|
XVisualInfo *vi = NULL;
|
|
|
|
|
2018-08-25 00:04:25 +02:00
|
|
|
XSetWindowAttributes swa;
|
|
|
|
swa.event_mask = StructureNotifyMask;
|
|
|
|
swa.border_pixel = 0;
|
|
|
|
unsigned long valuemask = CWBorderPixel | CWColormap | CWEventMask;
|
|
|
|
|
2017-12-10 19:38:26 +01:00
|
|
|
if (OS::get_singleton()->is_layered_allowed()) {
|
|
|
|
GLXFBConfig *fbc = glXChooseFBConfig(x11_display, DefaultScreen(x11_display), visual_attribs_layered, &fbcount);
|
|
|
|
ERR_FAIL_COND_V(!fbc, ERR_UNCONFIGURED);
|
|
|
|
|
|
|
|
for (int i = 0; i < fbcount; i++) {
|
|
|
|
vi = (XVisualInfo *)glXGetVisualFromFBConfig(x11_display, fbc[i]);
|
|
|
|
if (!vi)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
XRenderPictFormat *pict_format = XRenderFindVisualFormat(x11_display, vi->visual);
|
|
|
|
if (!pict_format) {
|
|
|
|
XFree(vi);
|
|
|
|
vi = NULL;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
fbconfig = fbc[i];
|
|
|
|
if (pict_format->direct.alphaMask > 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ERR_FAIL_COND_V(!fbconfig, ERR_UNCONFIGURED);
|
|
|
|
|
|
|
|
swa.background_pixmap = None;
|
|
|
|
swa.background_pixel = 0;
|
|
|
|
swa.border_pixmap = None;
|
2018-08-25 00:04:25 +02:00
|
|
|
valuemask |= CWBackPixel;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-12-10 19:38:26 +01:00
|
|
|
} else {
|
|
|
|
GLXFBConfig *fbc = glXChooseFBConfig(x11_display, DefaultScreen(x11_display), visual_attribs, &fbcount);
|
|
|
|
ERR_FAIL_COND_V(!fbc, ERR_UNCONFIGURED);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-12-10 19:38:26 +01:00
|
|
|
vi = glXGetVisualFromFBConfig(x11_display, fbc[0]);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-12-10 19:38:26 +01:00
|
|
|
fbconfig = fbc[0];
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-25 00:04:25 +02:00
|
|
|
int (*oldHandler)(Display *, XErrorEvent *) = XSetErrorHandler(&ctxErrorHandler);
|
2016-11-23 00:51:56 +01:00
|
|
|
|
2017-12-04 13:41:34 +01:00
|
|
|
switch (context_type) {
|
|
|
|
case OLDSTYLE: {
|
2018-08-25 00:04:25 +02:00
|
|
|
|
2017-12-04 13:41:34 +01:00
|
|
|
p->glx_context = glXCreateContext(x11_display, vi, 0, GL_TRUE);
|
2018-08-25 00:04:25 +02:00
|
|
|
ERR_FAIL_COND_V(!p->glx_context, ERR_UNCONFIGURED);
|
2017-12-04 13:41:34 +01:00
|
|
|
} break;
|
2018-08-25 00:04:25 +02:00
|
|
|
case GLES_2_0_COMPATIBLE: {
|
2017-12-04 13:41:34 +01:00
|
|
|
|
2018-08-25 00:04:25 +02:00
|
|
|
p->glx_context = glXCreateNewContext(x11_display, fbconfig, GLX_RGBA_TYPE, 0, true);
|
2017-12-04 13:41:34 +01:00
|
|
|
ERR_FAIL_COND_V(!p->glx_context, ERR_UNCONFIGURED);
|
|
|
|
} break;
|
|
|
|
case GLES_3_0_COMPATIBLE: {
|
|
|
|
|
|
|
|
static int context_attribs[] = {
|
|
|
|
GLX_CONTEXT_MAJOR_VERSION_ARB, 3,
|
|
|
|
GLX_CONTEXT_MINOR_VERSION_ARB, 3,
|
2018-03-06 14:53:30 +01:00
|
|
|
GLX_CONTEXT_PROFILE_MASK_ARB, GLX_CONTEXT_CORE_PROFILE_BIT_ARB,
|
2017-12-04 13:41:34 +01:00
|
|
|
GLX_CONTEXT_FLAGS_ARB, GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB /*|GLX_CONTEXT_DEBUG_BIT_ARB*/,
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2017-12-10 19:38:26 +01:00
|
|
|
p->glx_context = glXCreateContextAttribsARB(x11_display, fbconfig, NULL, true, context_attribs);
|
2017-12-04 13:41:34 +01:00
|
|
|
ERR_FAIL_COND_V(ctxErrorOccurred || !p->glx_context, ERR_UNCONFIGURED);
|
|
|
|
} break;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-08-25 00:04:25 +02:00
|
|
|
swa.colormap = XCreateColormap(x11_display, RootWindow(x11_display, vi->screen), vi->visual, AllocNone);
|
|
|
|
x11_window = XCreateWindow(x11_display, RootWindow(x11_display, vi->screen), 0, 0, OS::get_singleton()->get_video_mode().width, OS::get_singleton()->get_video_mode().height, 0, vi->depth, InputOutput, vi->visual, valuemask, &swa);
|
2019-04-29 15:40:48 +02:00
|
|
|
XStoreName(x11_display, x11_window, "Godot Engine");
|
2018-08-25 00:04:25 +02:00
|
|
|
|
|
|
|
ERR_FAIL_COND_V(!x11_window, ERR_UNCONFIGURED);
|
|
|
|
set_class_hint(x11_display, x11_window);
|
|
|
|
XMapWindow(x11_display, x11_window);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
XSync(x11_display, False);
|
|
|
|
XSetErrorHandler(oldHandler);
|
2016-11-23 00:51:56 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
glXMakeCurrent(x11_display, x11_window, p->glx_context);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
XFree(vi);
|
2015-10-25 15:15:56 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ContextGL_X11::get_window_width() {
|
|
|
|
|
|
|
|
XWindowAttributes xwa;
|
2017-03-05 16:44:50 +01:00
|
|
|
XGetWindowAttributes(x11_display, x11_window, &xwa);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return xwa.width;
|
|
|
|
}
|
2015-10-25 15:15:56 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int ContextGL_X11::get_window_height() {
|
|
|
|
XWindowAttributes xwa;
|
2017-03-05 16:44:50 +01:00
|
|
|
XGetWindowAttributes(x11_display, x11_window, &xwa);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return xwa.height;
|
|
|
|
}
|
|
|
|
|
2016-06-06 00:14:33 +02:00
|
|
|
void ContextGL_X11::set_use_vsync(bool p_use) {
|
2016-06-07 00:19:01 +02:00
|
|
|
static bool setup = false;
|
|
|
|
static PFNGLXSWAPINTERVALEXTPROC glXSwapIntervalEXT = NULL;
|
|
|
|
static PFNGLXSWAPINTERVALSGIPROC glXSwapIntervalMESA = NULL;
|
|
|
|
static PFNGLXSWAPINTERVALSGIPROC glXSwapIntervalSGI = NULL;
|
|
|
|
|
|
|
|
if (!setup) {
|
|
|
|
setup = true;
|
|
|
|
String extensions = glXQueryExtensionsString(x11_display, DefaultScreen(x11_display));
|
|
|
|
if (extensions.find("GLX_EXT_swap_control") != -1)
|
2017-03-05 16:44:50 +01:00
|
|
|
glXSwapIntervalEXT = (PFNGLXSWAPINTERVALEXTPROC)glXGetProcAddressARB((const GLubyte *)"glXSwapIntervalEXT");
|
2016-06-07 00:19:01 +02:00
|
|
|
if (extensions.find("GLX_MESA_swap_control") != -1)
|
2017-03-05 16:44:50 +01:00
|
|
|
glXSwapIntervalMESA = (PFNGLXSWAPINTERVALSGIPROC)glXGetProcAddressARB((const GLubyte *)"glXSwapIntervalMESA");
|
2016-06-07 00:19:01 +02:00
|
|
|
if (extensions.find("GLX_SGI_swap_control") != -1)
|
2017-03-05 16:44:50 +01:00
|
|
|
glXSwapIntervalSGI = (PFNGLXSWAPINTERVALSGIPROC)glXGetProcAddressARB((const GLubyte *)"glXSwapIntervalSGI");
|
2016-06-07 00:19:01 +02:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
int val = p_use ? 1 : 0;
|
2016-06-07 00:19:01 +02:00
|
|
|
if (glXSwapIntervalMESA) {
|
|
|
|
glXSwapIntervalMESA(val);
|
2017-03-05 16:44:50 +01:00
|
|
|
} else if (glXSwapIntervalSGI) {
|
2016-06-07 00:19:01 +02:00
|
|
|
glXSwapIntervalSGI(val);
|
2017-03-05 16:44:50 +01:00
|
|
|
} else if (glXSwapIntervalEXT) {
|
2016-06-07 00:19:01 +02:00
|
|
|
GLXDrawable drawable = glXGetCurrentDrawable();
|
|
|
|
glXSwapIntervalEXT(x11_display, drawable, val);
|
2017-03-05 16:44:50 +01:00
|
|
|
} else
|
|
|
|
return;
|
2016-06-07 00:19:01 +02:00
|
|
|
use_vsync = p_use;
|
2016-06-06 00:14:33 +02:00
|
|
|
}
|
|
|
|
bool ContextGL_X11::is_using_vsync() const {
|
|
|
|
|
2016-06-07 00:19:01 +02:00
|
|
|
return use_vsync;
|
2016-06-06 00:14:33 +02:00
|
|
|
}
|
|
|
|
|
2017-12-04 13:41:34 +01:00
|
|
|
ContextGL_X11::ContextGL_X11(::Display *p_x11_display, ::Window &p_x11_window, const OS::VideoMode &p_default_video_mode, ContextType p_context_type) :
|
2017-12-06 21:36:34 +01:00
|
|
|
x11_window(p_x11_window) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
default_video_mode = p_default_video_mode;
|
|
|
|
x11_display = p_x11_display;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-12-04 13:41:34 +01:00
|
|
|
context_type = p_context_type;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
double_buffer = false;
|
|
|
|
direct_render = false;
|
|
|
|
glx_minor = glx_major = 0;
|
|
|
|
p = memnew(ContextGL_X11_Private);
|
|
|
|
p->glx_context = 0;
|
|
|
|
use_vsync = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ContextGL_X11::~ContextGL_X11() {
|
2015-10-25 15:15:56 +01:00
|
|
|
release_current();
|
2017-03-05 16:44:50 +01:00
|
|
|
glXDestroyContext(x11_display, p->glx_context);
|
|
|
|
memdelete(p);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|