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 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
|
/*
* Copyright © 2009 Intel Corporation
*
* 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 (including the next
* paragraph) 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.
*
* Authors:
* Eric Anholt <eric@anholt.net>
*
*/
#include "piglit-util-gl.h"
#include "piglit-glx-util.h"
int piglit_automatic;
#ifndef _WIN32
__attribute__((weak)) int piglit_width = 100;
__attribute__((weak)) int piglit_height = 100;
#endif
Display *
piglit_get_glx_display()
{
Display *dpy;
dpy = XOpenDisplay(NULL);
if (!dpy) {
fprintf(stderr, "couldn't open display\n");
piglit_report_result(PIGLIT_FAIL);
}
return dpy;
}
XVisualInfo *
piglit_get_glx_visual(Display *dpy)
{
XVisualInfo *visinfo;
int attrib[] = {
GLX_RGBA,
GLX_RED_SIZE, 1,
GLX_GREEN_SIZE, 1,
GLX_BLUE_SIZE, 1,
GLX_DEPTH_SIZE, 1,
GLX_STENCIL_SIZE, 1,
GLX_DOUBLEBUFFER,
None
};
int screen = DefaultScreen(dpy);
visinfo = glXChooseVisual(dpy, screen, attrib);
if (visinfo == NULL) {
fprintf(stderr,
"Couldn't get an RGBA, double-buffered visual\n");
piglit_report_result(PIGLIT_FAIL);
}
return visinfo;
}
GLXContext
piglit_get_glx_context(Display *dpy, XVisualInfo *visinfo)
{
return piglit_get_glx_context_share(dpy, visinfo, NULL);
}
GLXContext
piglit_get_glx_context_share(Display *dpy, XVisualInfo *visinfo, GLXContext share)
{
GLXContext ctx;
ctx = glXCreateContext(dpy, visinfo, share, True);
if (ctx == None) {
fprintf(stderr, "glXCreateContext failed\n");
piglit_report_result(PIGLIT_FAIL);
}
return ctx;
}
static Window
_piglit_get_glx_window(Display *dpy, XVisualInfo *visinfo, bool map, bool fullscreen)
{
XSetWindowAttributes window_attr;
unsigned long mask;
int screen = DefaultScreen(dpy);
Window root_win = RootWindow(dpy, screen);
Window win;
window_attr.background_pixel = 0;
window_attr.border_pixel = 0;
window_attr.colormap = XCreateColormap(dpy, root_win,
visinfo->visual, AllocNone);
window_attr.event_mask = StructureNotifyMask | ExposureMask |
KeyPressMask;
mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
if (fullscreen) {
window_attr.override_redirect = True;
mask |= CWOverrideRedirect;
piglit_width = DisplayWidth(dpy, screen);
piglit_height = DisplayHeight(dpy, screen);
}
win = XCreateWindow(dpy, root_win, 0, 0,
piglit_width, piglit_height,
0, visinfo->depth, InputOutput,
visinfo->visual, mask, &window_attr);
if (piglit_automatic)
piglit_glx_window_set_no_input(dpy, win);
if (map)
XMapWindow(dpy, win);
return win;
}
Window
piglit_get_glx_window_unmapped(Display *dpy, XVisualInfo *visinfo)
{
return _piglit_get_glx_window(dpy, visinfo, false, false);
}
Window
piglit_get_glx_window_fullscreen(Display *dpy, XVisualInfo *visinfo)
{
return _piglit_get_glx_window(dpy, visinfo, true, true);
}
Window
piglit_get_glx_window(Display *dpy, XVisualInfo *visinfo)
{
return _piglit_get_glx_window(dpy, visinfo, true, false);
}
bool
piglit_is_glx_extension_supported(Display *dpy, const char *name)
{
int screen = DefaultScreen(dpy);
const char *const glx_extension_list =
glXQueryExtensionsString(dpy, screen);
return piglit_is_extension_in_string(glx_extension_list, name);
}
void
piglit_require_glx_extension(Display *dpy, const char *name)
{
if (!piglit_is_glx_extension_supported(dpy, name)) {
fprintf(stderr, "Test requires %s\n", name);
piglit_report_result(PIGLIT_SKIP);
}
}
void
piglit_require_glx_version(Display *dpy, int major, int minor)
{
int glxMajor;
int glxMinor;
if (! glXQueryVersion(dpy, & glxMajor, & glxMinor)) {
fprintf(stderr, "Could not query GLX version!\n");
piglit_report_result(PIGLIT_FAIL);
}
if (glxMajor != major || glxMinor < minor) {
fprintf(stderr, "Test requires GLX %d.%d. Got %d.%d.\n",
major, minor, glxMajor, glxMinor);
piglit_report_result(PIGLIT_SKIP);
}
}
void
piglit_glx_event_loop(Display *dpy, enum piglit_result (*draw)(Display *dpy))
{
for (;;) {
XEvent event;
XNextEvent (dpy, &event);
if (event.type == KeyPress) {
int keysyms_per_keycode_return;
KeySym *sym = XGetKeyboardMapping (dpy,
event.xkey.keycode,
1,
&keysyms_per_keycode_return);
if (sym[0] == XK_Escape || sym[0] == XK_q || sym[0] == XK_Q)
break;
else
draw(dpy);
} else if (event.type == Expose) {
enum piglit_result result = draw(dpy);
if (piglit_automatic) {
/*
* Rerun if we have failed and have a
* pending expose event, which might be an
* indication of invalid front buffer
* contents.
*/
if (result == PIGLIT_FAIL &&
XCheckTypedEvent(dpy, Expose, &event)) {
fprintf(stderr,
"Pending expose event- "
"rerunning.\n");
XPutBackEvent(dpy, &event);
continue;
}
XCloseDisplay(dpy);
piglit_report_result(result);
break;
}
}
}
}
static enum piglit_result
piglit_iterate_visuals_event_loop(Display *dpy,
enum piglit_result (*draw)(Display *dpy,
GLXFBConfig config),
GLXFBConfig config)
{
for (;;) {
XEvent event;
XNextEvent (dpy, &event);
if (event.type == Expose) {
return draw(dpy, config);
}
}
}
void
piglit_glx_window_set_no_input(Display *dpy, GLXDrawable win)
{
XWMHints *hints;
hints = XAllocWMHints();
hints->flags |= InputHint;
hints->input = False;
XSetWMHints(dpy, win, hints);
XFree(hints);
}
void
piglit_glx_set_no_input(void)
{
Display *d;
GLXDrawable win;
d = glXGetCurrentDisplay();
win = glXGetCurrentDrawable();
piglit_glx_window_set_no_input(d, win);
}
enum piglit_result
piglit_glx_iterate_pixmap_fbconfigs(enum piglit_result (*draw)(Display *dpy,
GLXFBConfig config))
{
int screen;
GLXFBConfig *configs;
int n_configs;
int i;
bool any_fail = false;
bool any_pass = false;
Window root_win;
Display *dpy = XOpenDisplay(NULL);
if (!dpy) {
fprintf(stderr, "couldn't open display\n");
piglit_report_result(PIGLIT_FAIL);
}
screen = DefaultScreen(dpy);
root_win = RootWindow(dpy, screen);
configs = glXGetFBConfigs(dpy, screen, &n_configs);
if (!configs) {
fprintf(stderr, "No GLX FB configs\n");
piglit_report_result(PIGLIT_SKIP);
}
for (i = 0; i < n_configs; i++) {
GLXFBConfig config = configs[i];
enum piglit_result result;
GLXContext ctx;
Pixmap pix;
GLXPixmap glx_pix;
int draw_types;
int depth;
glXGetFBConfigAttrib(dpy, config, GLX_DRAWABLE_TYPE,
&draw_types);
if (!(draw_types & GLX_PIXMAP_BIT))
continue;
glXGetFBConfigAttrib(dpy, config, GLX_BUFFER_SIZE,
&depth);
ctx = glXCreateNewContext(dpy, config, GLX_RGBA_TYPE,
NULL, true);
pix = XCreatePixmap(dpy, root_win,
piglit_width, piglit_height, depth);
glx_pix = glXCreatePixmap(dpy, config, pix, NULL);
glXMakeCurrent(dpy, glx_pix, ctx);
result = draw(dpy, config);
if (result == PIGLIT_FAIL)
any_fail = true;
else if (result == PIGLIT_PASS)
any_pass = true;
XFreePixmap(dpy, pix);
glXDestroyContext(dpy, ctx);
}
if (any_fail)
return PIGLIT_FAIL;
else if (any_pass)
return PIGLIT_PASS;
else
return PIGLIT_SKIP;
}
enum piglit_result
piglit_glx_iterate_visuals(enum piglit_result (*draw)(Display *dpy,
GLXFBConfig config))
{
int screen;
GLXFBConfig *configs;
int n_configs;
int i;
bool any_fail = false;
bool any_pass = false;
Display *dpy = XOpenDisplay(NULL);
if (!dpy) {
fprintf(stderr, "couldn't open display\n");
piglit_report_result(PIGLIT_FAIL);
}
screen = DefaultScreen(dpy);
configs = glXGetFBConfigs(dpy, screen, &n_configs);
if (!configs) {
fprintf(stderr, "No GLX FB configs\n");
piglit_report_result(PIGLIT_SKIP);
}
for (i = 0; i < n_configs; i++) {
enum piglit_result result;
XVisualInfo *visinfo;
GLXContext ctx;
GLXDrawable d;
visinfo = glXGetVisualFromFBConfig(dpy, configs[i]);
if (!visinfo)
continue;
ctx = piglit_get_glx_context(dpy, visinfo);
d = piglit_get_glx_window(dpy, visinfo);
glXMakeCurrent(dpy, d, ctx);
XFree(visinfo);
result = piglit_iterate_visuals_event_loop(dpy, draw,
configs[i]);
if (result == PIGLIT_FAIL)
any_fail = true;
else if (result == PIGLIT_PASS)
any_pass = true;
XDestroyWindow(dpy, d);
glXDestroyContext(dpy, ctx);
}
if (any_fail)
return PIGLIT_FAIL;
else if (any_pass)
return PIGLIT_PASS;
else
return PIGLIT_SKIP;
}
GLXFBConfig
piglit_glx_get_fbconfig_for_visinfo(Display *dpy, XVisualInfo *visinfo)
{
int i, nconfigs;
GLXFBConfig ret = None, *configs;
configs = glXGetFBConfigs(dpy, visinfo->screen, &nconfigs);
if (!configs)
return None;
for (i = 0; i < nconfigs; i++) {
int v;
if (glXGetFBConfigAttrib(dpy, configs[i], GLX_VISUAL_ID, &v))
continue;
if (v == visinfo->visualid) {
ret = configs[i];
break;
}
}
XFree(configs);
return ret;
}
/*
* If you use this in an X error handler - and you will - pre-call it as:
* piglit_glx_get_error(dpy, NULL);
* outside the error handler to cache errbase. Otherwise this will
* generate protocol, and you'll deadlock.
*
* Returns -1 if the error is not a GLX error, otherwise returns the
* GLX error code.
*/
int
piglit_glx_get_error(Display *dpy, XErrorEvent *err)
{
static int errbase, evbase;
if (!errbase)
glXQueryExtension(dpy, &errbase, &evbase);
if (!err)
return -1;
if (err->error_code < errbase ||
err->error_code > errbase + GLXBadProfileARB)
return -1;
return err->error_code - errbase;
}
/**
* Convert a GLX error code to a printable string
*
* \sa piglit_glx_get_error
*/
const char *
piglit_glx_error_string(int err)
{
static const char *const error_table[] = {
"GLXBadContext",
"GLXBadContextState",
"GLXBadDrawable",
"GLXBadPixmap",
"GLXBadContextTag",
"GLXBadCurrentWindow",
"GLXBadRenderRequest",
"GLXBadLargeRequest",
"GLXUnsupportedPrivateRequest",
"GLXBadFBConfig",
"GLXBadPbuffer",
"GLXBadCurrentDrawable",
"GLXBadWindow",
"GLXBadProfileARB"
};
if (err < 0) {
return "non-GLX error";
} else if (err >= ARRAY_SIZE(error_table)) {
return "unknown GLX error";
} else {
return error_table[err];
}
}
/**
* Get the procedure adddresses for a group of function names
*
* \note
* If any call to \c glXGetProcAddress fails, this function will call
* \c piglit_report_result with \c PIGLIT_FAIL.
*/
void
piglit_glx_get_all_proc_addresses(const struct piglit_glx_proc_reference *procedures,
unsigned num)
{
unsigned i;
for (i = 0; i < num; i++) {
*procedures[i].procedure =
glXGetProcAddress((const GLubyte *) procedures[i].name);
if (*procedures[i].procedure == NULL) {
fprintf(stderr,
"Failed to get function pointer for %s.\n",
procedures[i].name);
piglit_report_result(PIGLIT_FAIL);
}
}
}
|