forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOffscreenContextGLX.cc
281 lines (234 loc) · 8.11 KB
/
OffscreenContextGLX.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/*
Create an OpenGL context without creating an OpenGL Window. for Linux.
See also
glxgears.c by Brian Paul from mesa-demos (mesa3d.org)
http://cgit.freedesktop.org/mesa/demos/tree/src/xdemos?id=mesa-demos-8.0.1
http://www.opengl.org/sdk/docs/man/xhtml/glXIntro.xml
http://www.mesa3d.org/brianp/sig97/offscrn.htm
http://glprogramming.com/blue/ch07.html
OffscreenContext.mm (Mac OSX version)
*/
/*
* Some portions of the code below are:
* Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
*
* 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
* BRIAN PAUL 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.
*/
#include "OffscreenContext.h"
#include "printutils.h"
#include "imageutils.h"
#include "system-gl.h"
#include "fbo.h"
#include <GL/gl.h>
#include <GL/glx.h>
#include <assert.h>
#include <sstream>
#include <string>
#include <sys/utsname.h> // for uname
struct OffscreenContext
{
OffscreenContext(int width, int height) :
openGLContext(nullptr), xdisplay(nullptr), xwindow(0),
width(width), height(height),
fbo(nullptr) {}
GLXContext openGLContext;
Display *xdisplay;
Window xwindow;
int width;
int height;
fbo_t *fbo;
};
#include "OffscreenContextAll.hpp"
std::string get_os_info()
{
struct utsname u;
if (uname(&u) < 0) {
return STR("OS info: unknown, uname() error\n");
}
else {
return STR("OS info: " << u.sysname << " " << u.release << " " << u.version << "\n" <<
"Machine: " << u.machine);
}
return "";
}
std::string offscreen_context_getinfo(OffscreenContext *ctx)
{
assert(ctx);
if (!ctx->xdisplay) {
return std::string("No GL Context initialized. No information to report\n");
}
int major, minor;
glXQueryVersion(ctx->xdisplay, &major, &minor);
return STR("GL context creator: GLX\n" <<
"PNG generator: lodepng\n" <<
"GLX version: " << major << "." << minor << "\n" <<
get_os_info());
}
static XErrorHandler original_xlib_handler = nullptr;
static auto XCreateWindow_failed = false;
static int XCreateWindow_error(Display *dpy, XErrorEvent *event)
{
std::cerr << "XCreateWindow failed: XID: " << event->resourceid
<< " request: " << static_cast<int>(event->request_code)
<< " minor: " << static_cast<int>(event->minor_code) << "\n";
char description[1024];
XGetErrorText( dpy, event->error_code, description, 1023 );
std::cerr << " error message: " << description << "\n";
XCreateWindow_failed = true;
return 0;
}
/*
create a dummy X window without showing it. (without 'mapping' it)
and save information to the ctx.
This purposely does not use glxCreateWindow, to avoid crashes,
"failed to create drawable" errors, and Mesa "WARNING: Application calling
GLX 1.3 function when GLX 1.3 is not supported! This is an application bug!"
This function will alter ctx.openGLContext and ctx.xwindow if successful
*/
bool create_glx_dummy_window(OffscreenContext &ctx)
{
int attributes[] = {
GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT | GLX_PIXMAP_BIT | GLX_PBUFFER_BIT, //support all 3, for OpenCSG
GLX_RENDER_TYPE, GLX_RGBA_BIT,
GLX_RED_SIZE, 8,
GLX_GREEN_SIZE, 8,
GLX_BLUE_SIZE, 8,
GLX_ALPHA_SIZE, 8,
GLX_DEPTH_SIZE, 24, // depth-stencil for OpenCSG
GLX_STENCIL_SIZE, 8,
GLX_DOUBLEBUFFER, true,
None
};
auto dpy = ctx.xdisplay;
int num_returned = 0;
auto fbconfigs = glXChooseFBConfig( dpy, DefaultScreen(dpy), attributes, &num_returned );
if (fbconfigs == nullptr) {
std::cerr << "glXChooseFBConfig failed\n";
return false;
}
auto visinfo = glXGetVisualFromFBConfig( dpy, fbconfigs[0] );
if (visinfo == nullptr) {
std::cerr << "glXGetVisualFromFBConfig failed\n";
XFree(fbconfigs);
return false;
}
// can't depend on xWin==nullptr at failure. use a custom Xlib error handler instead.
original_xlib_handler = XSetErrorHandler(XCreateWindow_error);
auto root = DefaultRootWindow(dpy);
XSetWindowAttributes xwin_attr;
auto width = ctx.width;
auto height = ctx.height;
xwin_attr.background_pixmap = None;
xwin_attr.background_pixel = 0;
xwin_attr.border_pixel = 0;
xwin_attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
xwin_attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
unsigned long int mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
auto xWin = XCreateWindow( dpy, root, 0, 0, width, height,
0, visinfo->depth, InputOutput,
visinfo->visual, mask, &xwin_attr );
// Window xWin = XCreateSimpleWindow( dpy, DefaultRootWindow(dpy), 0,0,42,42, 0,0,0 );
XSync(dpy, false);
if (XCreateWindow_failed) {
XFree(visinfo);
XFree(fbconfigs);
return false;
}
XSetErrorHandler(original_xlib_handler);
// Most programs would call XMapWindow here. But we don't, to keep the window hidden
// XMapWindow( dpy, xWin );
auto context = glXCreateNewContext(dpy, fbconfigs[0], GLX_RGBA_TYPE, nullptr, true);
if (context == nullptr) {
std::cerr << "glXCreateNewContext failed\n";
XDestroyWindow(dpy, xWin);
XFree(visinfo);
XFree(fbconfigs);
return false;
}
//GLXWindow glxWin = glXCreateWindow( dpy, fbconfigs[0], xWin, nullptr );
if (!glXMakeContextCurrent( dpy, xWin, xWin, context )) {
//if (!glXMakeContextCurrent( dpy, glxWin, glxWin, context )) {
std::cerr << "glXMakeContextCurrent failed\n";
glXDestroyContext(dpy, context);
XDestroyWindow(dpy, xWin);
XFree(visinfo);
XFree(fbconfigs);
return false;
}
ctx.openGLContext = context;
ctx.xwindow = xWin;
XFree(visinfo);
XFree(fbconfigs);
return true;
}
bool create_glx_dummy_context(OffscreenContext &ctx);
OffscreenContext *create_offscreen_context(int w, int h)
{
auto ctx = new OffscreenContext(w, h);
// before an FBO can be setup, a GLX context must be created
// this call alters ctx->xDisplay and ctx->openGLContext
// and ctx->xwindow if successful
if (!create_glx_dummy_context(*ctx)) {
delete ctx;
return nullptr;
}
return create_offscreen_context_common(ctx);
}
bool teardown_offscreen_context(OffscreenContext *ctx)
{
if (ctx) {
fbo_unbind(ctx->fbo);
fbo_delete(ctx->fbo);
XDestroyWindow( ctx->xdisplay, ctx->xwindow );
glXDestroyContext( ctx->xdisplay, ctx->openGLContext );
XCloseDisplay( ctx->xdisplay );
return true;
}
return false;
}
bool save_framebuffer(const OffscreenContext *ctx, std::ostream &output)
{
glXSwapBuffers(ctx->xdisplay, ctx->xwindow);
return save_framebuffer_common(ctx, output);
}
#pragma GCC diagnostic ignored "-Waddress"
bool create_glx_dummy_context(OffscreenContext &ctx)
{
// This will alter ctx.openGLContext and ctx.xdisplay and ctx.xwindow if successful
int major;
int minor;
auto result = false;
ctx.xdisplay = XOpenDisplay(nullptr);
if (ctx.xdisplay == nullptr) {
std::cerr << "Unable to open a connection to the X server.\n";
auto dpyenv = getenv("DISPLAY");
std::cerr << "DISPLAY=" << (dpyenv?dpyenv:"") << "\n";
return false;
}
// glxQueryVersion is not always reliable. Use it, but then
// also check to see if GLX 1.3 functions exist
glXQueryVersion(ctx.xdisplay, &major, &minor);
if (major==1 && minor<=2 && glXGetVisualFromFBConfig==nullptr) {
std::cerr << "Error: GLX version 1.3 functions missing. "
<< "Your GLX version: " << major << "." << minor << std::endl;
} else {
result = create_glx_dummy_window(ctx);
}
if (!result) XCloseDisplay(ctx.xdisplay);
return result;
}