2014-01-11 15:34:15 -08:00
|
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2014 by Zachary Lund <admin@computerquip.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "gl-subsystem.h"
|
|
|
|
|
2014-01-24 23:32:20 -08:00
|
|
|
#include "GL/glx_obs.h"
|
2014-02-05 20:33:55 -08:00
|
|
|
|
2014-01-25 20:22:35 -08:00
|
|
|
static const int fb_attribs[] = {
|
2013-12-27 18:43:28 -08:00
|
|
|
/* Hardcoded for now... */
|
|
|
|
GLX_STENCIL_SIZE, 8,
|
|
|
|
GLX_DEPTH_SIZE, 24,
|
|
|
|
GLX_BUFFER_SIZE, 32, /* Color buffer depth */
|
|
|
|
GLX_DOUBLEBUFFER, True,
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2014-01-25 20:22:35 -08:00
|
|
|
static const int ctx_attribs[] = {
|
2014-01-03 21:14:35 -08:00
|
|
|
#ifdef _DEBUG
|
|
|
|
GLX_CONTEXT_FLAGS_ARB, GLX_CONTEXT_DEBUG_BIT_ARB,
|
|
|
|
#endif
|
2013-12-27 18:43:28 -08:00
|
|
|
GLX_CONTEXT_PROFILE_MASK_ARB, GLX_CONTEXT_CORE_PROFILE_BIT_ARB,
|
2014-01-03 21:14:35 -08:00
|
|
|
None,
|
2013-12-27 18:43:28 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gl_windowinfo {
|
|
|
|
uint32_t id;
|
|
|
|
Display *display;
|
|
|
|
};
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
struct gl_platform {
|
|
|
|
GLXContext context;
|
|
|
|
struct gs_swap_chain swap;
|
|
|
|
};
|
|
|
|
|
2014-02-05 20:31:03 -08:00
|
|
|
extern struct gs_swap_chain *gl_platform_getswap(struct gl_platform *platform)
|
2013-12-27 18:43:28 -08:00
|
|
|
{
|
|
|
|
return &platform->swap;
|
|
|
|
}
|
|
|
|
|
2014-02-05 20:31:03 -08:00
|
|
|
extern struct gl_windowinfo *gl_windowinfo_create(struct gs_init_data *info)
|
2013-12-27 18:43:28 -08:00
|
|
|
{
|
2014-02-09 11:34:07 -08:00
|
|
|
struct gl_windowinfo *wi = bzalloc(sizeof(struct gl_windowinfo));
|
2013-12-27 18:43:28 -08:00
|
|
|
wi->id = info->window.id;
|
2014-04-03 14:41:22 -07:00
|
|
|
wi->display = info->window.display;
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
return wi;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern void gl_windowinfo_destroy(struct gl_windowinfo *wi)
|
|
|
|
{
|
|
|
|
bfree(wi);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern void gl_getclientsize(struct gs_swap_chain *swap,
|
2014-02-05 20:31:03 -08:00
|
|
|
uint32_t *width, uint32_t *height)
|
2013-12-27 18:43:28 -08:00
|
|
|
{
|
|
|
|
XWindowAttributes info = { 0 };
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
XGetWindowAttributes(swap->wi->display, swap->wi->id, &info);
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
*height = info.height;
|
|
|
|
*width = info.width;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_info_stuff(struct gs_init_data *info)
|
|
|
|
{
|
2014-01-02 16:35:10 -08:00
|
|
|
blog( LOG_INFO,
|
2013-12-27 18:43:28 -08:00
|
|
|
"X and Y: %i %i\n"
|
|
|
|
"Backbuffers: %i\n"
|
|
|
|
"Color Format: %i\n"
|
|
|
|
"ZStencil Format: %i\n"
|
|
|
|
"Adapter: %i\n",
|
2014-02-05 20:31:03 -08:00
|
|
|
info->cx, info->cy,
|
2013-12-27 18:43:28 -08:00
|
|
|
info->num_backbuffers,
|
2014-02-05 20:31:03 -08:00
|
|
|
info->format, info->zsformat,
|
2013-12-27 18:43:28 -08:00
|
|
|
info->adapter
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct gl_platform *gl_platform_create(device_t device,
|
|
|
|
struct gs_init_data *info)
|
2014-02-05 20:33:55 -08:00
|
|
|
{
|
2013-12-27 18:43:28 -08:00
|
|
|
int num_configs = 0;
|
|
|
|
int error_base = 0, event_base = 0;
|
|
|
|
Display *display = XOpenDisplay(NULL); /* Open default screen */
|
2014-02-09 11:34:07 -08:00
|
|
|
struct gl_platform *plat = bzalloc(sizeof(struct gl_platform));
|
2013-12-27 18:43:28 -08:00
|
|
|
GLXFBConfig* configs;
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
print_info_stuff(info);
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
if (!display) {
|
2014-02-05 20:31:03 -08:00
|
|
|
blog(LOG_ERROR, "Unable to find display. DISPLAY variable "
|
|
|
|
"may not be set correctly.");
|
2013-12-27 18:43:28 -08:00
|
|
|
goto fail0;
|
|
|
|
}
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2014-01-24 23:32:20 -08:00
|
|
|
if (!glx_LoadFunctions(display, DefaultScreen(display))) {
|
|
|
|
blog(LOG_ERROR, "Unable to load GLX entry functions.");
|
|
|
|
goto fail0;
|
|
|
|
}
|
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
if (!glXQueryExtension(display, &error_base, &event_base)) {
|
|
|
|
blog(LOG_ERROR, "GLX not supported.");
|
|
|
|
goto fail0;
|
|
|
|
}
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2014-02-08 00:52:55 -08:00
|
|
|
/* We require glX version 1.3 */
|
2014-01-03 23:08:49 -08:00
|
|
|
{
|
|
|
|
int major = 0, minor = 0;
|
|
|
|
|
|
|
|
glXQueryVersion(display, &major, &minor);
|
2014-02-08 00:52:55 -08:00
|
|
|
if (major < 1 || (major == 1 && minor < 3)) {
|
2014-02-05 20:31:03 -08:00
|
|
|
blog(LOG_ERROR, "GLX version found: %i.%i\nRequired: "
|
2014-02-08 00:52:55 -08:00
|
|
|
"1.3", major, minor);
|
2014-01-03 23:08:49 -08:00
|
|
|
goto fail0;
|
|
|
|
}
|
|
|
|
}
|
2014-01-24 23:32:20 -08:00
|
|
|
|
|
|
|
if (!glx_ext_ARB_create_context) {
|
2013-12-27 18:43:28 -08:00
|
|
|
blog(LOG_ERROR, "ARB_GLX_create_context not supported!");
|
|
|
|
goto fail0;
|
|
|
|
}
|
2014-02-05 20:31:03 -08:00
|
|
|
|
|
|
|
configs = glXChooseFBConfig(display, DefaultScreen(display),
|
|
|
|
fb_attribs, &num_configs);
|
2013-12-27 18:43:28 -08:00
|
|
|
|
|
|
|
if(!configs) {
|
|
|
|
blog(LOG_ERROR, "Attribute list or screen is invalid.");
|
|
|
|
goto fail0;
|
|
|
|
}
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
if(num_configs == 0) {
|
|
|
|
blog(LOG_ERROR, "No framebuffer configurations found.");
|
|
|
|
goto fail1;
|
|
|
|
}
|
2014-02-05 20:31:03 -08:00
|
|
|
|
|
|
|
/* We just use the first configuration found... as it does everything
|
|
|
|
* we want at the very least. */
|
|
|
|
plat->context = glXCreateContextAttribsARB(display, configs[0], NULL,
|
|
|
|
True, ctx_attribs);
|
|
|
|
if(!plat->context) {
|
2013-12-27 18:43:28 -08:00
|
|
|
blog(LOG_ERROR, "Failed to create OpenGL context.");
|
|
|
|
goto fail1;
|
|
|
|
}
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
if(!glXMakeCurrent(display, info->window.id, plat->context)) {
|
|
|
|
blog(LOG_ERROR, "Failed to make context current.");
|
|
|
|
goto fail2;
|
|
|
|
}
|
|
|
|
|
2014-01-24 23:32:20 -08:00
|
|
|
if (!ogl_LoadFunctions()) {
|
|
|
|
blog(LOG_ERROR, "Failed to load OpenGL entry functions.");
|
|
|
|
goto fail2;
|
2013-12-27 18:43:28 -08:00
|
|
|
}
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2014-01-03 21:14:35 -08:00
|
|
|
blog(LOG_INFO, "OpenGL version: %s\n", glGetString(GL_VERSION));
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
plat->swap.device = device;
|
|
|
|
plat->swap.info = *info;
|
|
|
|
plat->swap.wi = gl_windowinfo_create(info);
|
|
|
|
plat->swap.wi->display = display;
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
XFree(configs);
|
|
|
|
XSync(display, False);
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
return plat;
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
fail2:
|
2014-01-03 23:08:49 -08:00
|
|
|
glXMakeCurrent(display, None, NULL);
|
2013-12-27 18:43:28 -08:00
|
|
|
glXDestroyContext(display, plat->context);
|
2014-02-05 20:31:03 -08:00
|
|
|
fail1:
|
2013-12-27 18:43:28 -08:00
|
|
|
XFree(configs);
|
|
|
|
fail0:
|
|
|
|
bfree(plat);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-02-05 20:31:03 -08:00
|
|
|
void gl_platform_destroy(struct gl_platform *platform)
|
2013-12-27 18:43:28 -08:00
|
|
|
{
|
2014-01-02 16:35:10 -08:00
|
|
|
if (!platform)
|
2014-02-05 20:31:03 -08:00
|
|
|
return;
|
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
glXMakeCurrent(platform->swap.wi->display, None, NULL);
|
|
|
|
glXDestroyContext(platform->swap.wi->display, platform->context);
|
|
|
|
XCloseDisplay(platform->swap.wi->display);
|
2014-01-02 16:35:10 -08:00
|
|
|
gl_windowinfo_destroy(platform->swap.wi);
|
2013-12-27 18:43:28 -08:00
|
|
|
bfree(platform);
|
|
|
|
}
|
|
|
|
|
2014-02-05 20:31:03 -08:00
|
|
|
void device_entercontext(device_t device)
|
2013-12-27 18:43:28 -08:00
|
|
|
{
|
|
|
|
GLXContext context = device->plat->context;
|
|
|
|
XID window = device->plat->swap.wi->id;
|
|
|
|
Display *display = device->plat->swap.wi->display;
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
if (device->cur_swap)
|
|
|
|
device->plat->swap.wi->id = device->cur_swap->wi->id;
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
if (!glXMakeCurrent(display, window, context)) {
|
|
|
|
blog(LOG_ERROR, "Failed to make context current.");
|
|
|
|
}
|
|
|
|
}
|
2014-02-05 20:31:03 -08:00
|
|
|
|
|
|
|
void device_leavecontext(device_t device)
|
2013-12-27 18:43:28 -08:00
|
|
|
{
|
|
|
|
Display *display = device->plat->swap.wi->display;
|
2014-02-05 20:31:03 -08:00
|
|
|
|
|
|
|
if(!glXMakeCurrent(display, None, NULL)) {
|
2013-12-27 18:43:28 -08:00
|
|
|
blog(LOG_ERROR, "Failed to reset current context.");
|
|
|
|
}
|
|
|
|
}
|
2014-01-03 22:48:41 -08:00
|
|
|
|
|
|
|
void gl_update(device_t device)
|
|
|
|
{
|
|
|
|
/* I don't know of anything we can do here. */
|
2014-02-14 14:56:01 -08:00
|
|
|
UNUSED_PARAMETER(device);
|
2014-01-03 22:48:41 -08:00
|
|
|
}
|
|
|
|
|
2014-02-05 20:31:03 -08:00
|
|
|
void device_load_swapchain(device_t device, swapchain_t swap)
|
2013-12-27 18:43:28 -08:00
|
|
|
{
|
|
|
|
if(!swap)
|
|
|
|
swap = &device->plat->swap;
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
device->cur_swap = swap;
|
|
|
|
}
|
|
|
|
|
2014-02-05 20:31:03 -08:00
|
|
|
void device_present(device_t device)
|
2013-12-27 18:43:28 -08:00
|
|
|
{
|
|
|
|
Display *display = device->plat->swap.wi->display;
|
|
|
|
XID window = device->plat->swap.wi->id;
|
2014-02-05 20:31:03 -08:00
|
|
|
|
2013-12-27 18:43:28 -08:00
|
|
|
glXSwapBuffers(display, window);
|
|
|
|
}
|