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 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873
|
/*
* opengl.cpp
*
* Copyright (C) 2008 Ivo Anjo <knuckles@gmail.com>
* Copyright (C) 2004 Ilya Korniyko <k_ilya@ukr.net>
* Adapted from Brian Paul's glxinfo from Mesa demos (http://www.mesa3d.org)
* Copyright (C) 1999-2002 Brian Paul
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "opengl.h"
#include <QRegExp>
#include <QFile>
#include <QTextStream>
#include <KPluginFactory>
#include <KPluginLoader>
#include <kaboutdata.h>
#include <kdialog.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kdebug.h>
// X11 includes
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <openglconfig.h>
#ifdef KCM_ENABLE_OPENGLES
#include <EGL/egl.h>
#include <GLES2/gl2.h>
#else
// GLU includes
#include <GL/glu.h>
// OpenGL includes
#include <GL/gl.h>
#include <GL/glext.h>
#include <GL/glx.h>
#endif
#include "opengl.moc"
K_PLUGIN_FACTORY(KCMOpenGLFactory,
registerPlugin<KCMOpenGL>();
)
K_EXPORT_PLUGIN(KCMOpenGLFactory("kcmopengl"))
// FIXME: Temporary!
bool GetInfo_OpenGL(QTreeWidget *treeWidget);
KCMOpenGL::KCMOpenGL(QWidget *parent, const QVariantList &)
: KCModule(KCMOpenGLFactory::componentData(), parent)
{
setupUi(this);
layout()->setMargin(0);
GetInfo_OpenGL(glinfoTreeWidget);
// Watch for expanded and collapsed events, to resize columns
connect(glinfoTreeWidget, SIGNAL(expanded(QModelIndex)), this, SLOT(treeWidgetChanged()));
connect(glinfoTreeWidget, SIGNAL(collapsed(QModelIndex)), this, SLOT(treeWidgetChanged()));
KAboutData *about =
new KAboutData(I18N_NOOP("kcmopengl"), 0,
ki18n("KCM OpenGL Information"),
0, KLocalizedString(), KAboutData::License_GPL,
ki18n("(c) 2008 Ivo Anjo\n(c) 2004 Ilya Korniyko\n(c) 1999-2002 Brian Paul"));
about->addAuthor(ki18n("Ivo Anjo"), KLocalizedString(), "knuckles@gmail.com");
about->addAuthor(ki18n("Ilya Korniyko"), KLocalizedString(), "k_ilya@ukr.net");
about->addCredit(ki18n("Helge Deller"), ki18n("Original Maintainer"), "deller@gmx.de");
about->addCredit(ki18n("Brian Paul"), ki18n("Author of glxinfo Mesa demos (http://www.mesa3d.org)"));
setAboutData(about);
}
void KCMOpenGL::treeWidgetChanged() {
glinfoTreeWidget->resizeColumnToContents(0);
glinfoTreeWidget->resizeColumnToContents(1);
}
QTreeWidgetItem *newItem(QTreeWidgetItem *parent, QTreeWidgetItem *preceding, QString textCol1, QString textCol2 = QString()) {
QTreeWidgetItem *newItem;
if ((parent == NULL) && (preceding == NULL)) {
newItem = new QTreeWidgetItem();
} else if (preceding == NULL) {
newItem = new QTreeWidgetItem(parent);
} else {
newItem = new QTreeWidgetItem(parent, preceding);
}
newItem->setText(0, textCol1);
if (!textCol2.isNull()) {
newItem->setText(1, textCol2);
}
newItem->setFlags(Qt::ItemIsEnabled);
return newItem;
}
QTreeWidgetItem *newItem(QTreeWidgetItem *parent, QString textCol1, QString textCol2 = QString()) {
return newItem(parent, NULL, textCol1, textCol2);
}
static bool IsDirect;
static struct glinfo {
#ifndef KCM_ENABLE_OPENGLES
const char *serverVendor;
const char *serverVersion;
const char *serverExtensions;
const char *clientVendor;
const char *clientVersion;
const char *clientExtensions;
const char *glxExtensions;
#else
const char *eglVendor;
const char *eglVersion;
const char *eglExtensions;
#endif
const char *glVendor;
const char *glRenderer;
const char *glVersion;
const char *glExtensions;
#ifndef KCM_ENABLE_OPENGLES
const char *gluVersion;
const char *gluExtensions;
#endif
char *displayName;
} gli;
static struct {
QString module,
pci,
vendor,
device,
subvendor,
rev;
} dri_info;
static int ReadPipe(QString FileName, QStringList &list)
{
FILE *pipe;
if ((pipe = popen(FileName.toAscii().data(), "r")) == NULL) {
return 0;
}
QTextStream t(pipe, QIODevice::ReadOnly);
while (!t.atEnd()) list.append(t.readLine());
pclose(pipe);
return list.count();
}
#if defined(Q_OS_LINUX)
#define INFO_DRI "/proc/dri/0/name"
static bool get_dri_device()
{
QFile file;
file.setFileName(INFO_DRI);
if (!file.exists() || !file.open(QIODevice::ReadOnly))
return false;
QTextStream stream(&file);
QString line = stream.readLine();
if (!line.isEmpty()) {
dri_info.module = line.mid(0, line.indexOf(0x20));
// possible formats, for regression testing
// line = " PCI:01:00:0";
// line = " pci:0000:01:00.0"
QRegExp rx = QRegExp("\\b[Pp][Cc][Ii][:]([0-9a-fA-F]+[:])?([0-9a-fA-F]+[:][0-9a-fA-F]+[:.][0-9a-fA-F]+)\\b");
if (rx.indexIn(line)>0) {
dri_info.pci = rx.cap(2);
int end = dri_info.pci.lastIndexOf(':');
int end2 = dri_info.pci.lastIndexOf('.');
if (end2>end) end=end2;
dri_info.pci[end]='.';
QString cmd = QString("lspci -m -v -s ") + dri_info.pci;
QStringList pci_info;
int num;
if (((num = ReadPipe(cmd, pci_info)) ||
(num = ReadPipe("/sbin/"+cmd, pci_info)) ||
(num = ReadPipe("/usr/sbin/"+cmd, pci_info)) ||
(num = ReadPipe("/usr/local/sbin/"+cmd, pci_info))) && num>=7) {
for (int i=2; i<=6; i++) {
line = pci_info[i];
line.remove(QRegExp("[^:]*:[ ]*"));
switch (i){
case 2: dri_info.vendor = line; break;
case 3: dri_info.device = line; break;
case 4: dri_info.subvendor = line; break;
case 6: dri_info.rev = line; break;
}
}
return true;
}
}
}
return false;
}
#elif defined(Q_OS_FREEBSD)
static bool get_dri_device() {
QStringList pci_info;
if (ReadPipe("sysctl -n hw.dri.0.name",pci_info)) {
dri_info.module = pci_info[0].mid(0, pci_info[0].indexOf(0x20));
}
return false;
}
#else
static bool get_dri_device() { return false; }
#endif
#ifndef KCM_ENABLE_OPENGLES
static void
mesa_hack(Display *dpy, int scrnum)
{
static const int attribs[] = {
GLX_RGBA,
GLX_RED_SIZE, 1,
GLX_GREEN_SIZE, 1,
GLX_BLUE_SIZE, 1,
GLX_DEPTH_SIZE, 1,
GLX_STENCIL_SIZE, 1,
GLX_ACCUM_RED_SIZE, 1,
GLX_ACCUM_GREEN_SIZE, 1,
GLX_ACCUM_BLUE_SIZE, 1,
GLX_ACCUM_ALPHA_SIZE, 1,
GLX_DOUBLEBUFFER,
None
};
XVisualInfo *visinfo;
visinfo = glXChooseVisual(dpy, scrnum, const_cast<int*>(attribs));
if (visinfo)
XFree(visinfo);
}
#endif
static void
print_extension_list(const char *ext, QTreeWidgetItem *l1)
{
int i, j;
if (!ext || !ext[0])
return;
QString qext = QString::fromLatin1(ext);
QTreeWidgetItem *l2 = NULL;
i = j = 0;
while (1) {
if (ext[j] == ' ' || ext[j] == 0) {
/* found end of an extension name */
const int len = j - i;
/* print the extension name between ext[i] and ext[j] */
if (!l2) l2 = newItem(l1, qext.mid(i, len));
else l2 = newItem(l1, l2, qext.mid(i, len));
i=j;
if (ext[j] == 0) {
break;
}
else {
i++;
j++;
if (ext[j] == 0)
break;
}
}
j++;
}
}
#ifndef KCM_ENABLE_OPENGLES
#if defined(GLX_ARB_get_proc_address) && defined(__GLXextFuncPtr)
extern "C" {
extern __GLXextFuncPtr glXGetProcAddressARB (const GLubyte *);
}
#endif
static void
print_limits(QTreeWidgetItem *l1, const char * glExtensions, bool getProcAddress)
{
/* TODO
GL_SAMPLE_BUFFERS
GL_SAMPLES
GL_COMPRESSED_TEXTURE_FORMATS
*/
if (!glExtensions)
return;
struct token_name {
GLuint type; // count and flags, !!! count must be <=2 for now
GLenum token;
const QString name;
};
struct token_group {
int count;
int type;
const token_name *group;
const QString descr;
const char *ext;
};
QTreeWidgetItem *l2 = NULL, *l3 = NULL;
#if defined(PFNGLGETPROGRAMIVARBPROC)
PFNGLGETPROGRAMIVARBPROC kcm_glGetProgramivARB = NULL;
#endif
#define KCMGL_FLOAT 128
#define KCMGL_PROG 256
#define KCMGL_COUNT_MASK(x) (x & 127)
#define KCMGL_SIZE(x) (sizeof(x)/sizeof(x[0]))
const struct token_name various_limits[] = {
{ 1, GL_MAX_LIGHTS, i18n("Max. number of light sources") },
{ 1, GL_MAX_CLIP_PLANES, i18n("Max. number of clipping planes") },
{ 1, GL_MAX_PIXEL_MAP_TABLE, i18n("Max. pixel map table size") },
{ 1, GL_MAX_LIST_NESTING, i18n("Max. display list nesting level") },
{ 1, GL_MAX_EVAL_ORDER, i18n("Max. evaluator order") },
{ 1, GL_MAX_ELEMENTS_VERTICES, i18n("Max. recommended vertex count") },
{ 1, GL_MAX_ELEMENTS_INDICES, i18n("Max. recommended index count") },
#ifdef GL_QUERY_COUNTER_BITS
{ 1, GL_QUERY_COUNTER_BITS, i18n("Occlusion query counter bits")},
#endif
#ifdef GL_MAX_VERTEX_UNITS_ARB
{ 1, GL_MAX_VERTEX_UNITS_ARB, i18n("Max. vertex blend matrices") },
#endif
#ifdef GL_MAX_PALETTE_MATRICES_ARB
{ 1, GL_MAX_PALETTE_MATRICES_ARB, i18n("Max. vertex blend matrix palette size") },
#endif
{0,0,QString()}
};
const struct token_name texture_limits[] = {
{ 1, GL_MAX_TEXTURE_SIZE, i18n("Max. texture size") },
{ 1, GL_MAX_TEXTURE_UNITS_ARB, i18n("No. of texture units") },
{ 1, GL_MAX_3D_TEXTURE_SIZE, i18n("Max. 3D texture size") },
{ 1, GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB, i18n("Max. cube map texture size") },
#ifdef GL_MAX_RECTANGLE_TEXTURE_SIZE_NV
{ 1, GL_MAX_RECTANGLE_TEXTURE_SIZE_NV, i18n("Max. rectangular texture size") },
#endif
{ 1 | KCMGL_FLOAT, GL_MAX_TEXTURE_LOD_BIAS_EXT, i18n("Max. texture LOD bias") },
{ 1, GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, i18n("Max. anisotropy filtering level") },
{ 1, GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB, i18n("No. of compressed texture formats") },
{0,0,QString()}
};
const struct token_name float_limits[] = {
{ 2 | KCMGL_FLOAT, GL_ALIASED_POINT_SIZE_RANGE, "ALIASED_POINT_SIZE_RANGE" },
{ 2 | KCMGL_FLOAT, GL_SMOOTH_POINT_SIZE_RANGE, "SMOOTH_POINT_SIZE_RANGE" },
{ 1 | KCMGL_FLOAT, GL_SMOOTH_POINT_SIZE_GRANULARITY,"SMOOTH_POINT_SIZE_GRANULARITY"},
{ 2 | KCMGL_FLOAT, GL_ALIASED_LINE_WIDTH_RANGE, "ALIASED_LINE_WIDTH_RANGE" },
{ 2 | KCMGL_FLOAT, GL_SMOOTH_LINE_WIDTH_RANGE, "SMOOTH_LINE_WIDTH_RANGE" },
{ 1 | KCMGL_FLOAT, GL_SMOOTH_LINE_WIDTH_GRANULARITY,"SMOOTH_LINE_WIDTH_GRANULARITY"},
{0,0,QString()}
};
const struct token_name stack_depth[] = {
{ 1, GL_MAX_MODELVIEW_STACK_DEPTH, "MAX_MODELVIEW_STACK_DEPTH" },
{ 1, GL_MAX_PROJECTION_STACK_DEPTH, "MAX_PROJECTION_STACK_DEPTH" },
{ 1, GL_MAX_TEXTURE_STACK_DEPTH, "MAX_TEXTURE_STACK_DEPTH" },
{ 1, GL_MAX_NAME_STACK_DEPTH, "MAX_NAME_STACK_DEPTH" },
{ 1, GL_MAX_ATTRIB_STACK_DEPTH, "MAX_ATTRIB_STACK_DEPTH" },
{ 1, GL_MAX_CLIENT_ATTRIB_STACK_DEPTH, "MAX_CLIENT_ATTRIB_STACK_DEPTH" },
{ 1, GL_MAX_COLOR_MATRIX_STACK_DEPTH, "MAX_COLOR_MATRIX_STACK_DEPTH" },
#ifdef GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB
{ 1, GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB,"MAX_MATRIX_PALETTE_STACK_DEPTH"},
#endif
{0,0,QString()}
};
#ifdef GL_ARB_fragment_program
const struct token_name arb_fp[] = {
{ 1, GL_MAX_TEXTURE_COORDS_ARB, "MAX_TEXTURE_COORDS" },
{ 1, GL_MAX_TEXTURE_IMAGE_UNITS_ARB, "MAX_TEXTURE_IMAGE_UNITS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_ENV_PARAMETERS_ARB, "MAX_PROGRAM_ENV_PARAMETERS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB, "MAX_PROGRAM_LOCAL_PARAMETERS" },
{ 1, GL_MAX_PROGRAM_MATRICES_ARB, "MAX_PROGRAM_MATRICES" },
{ 1, GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB, "MAX_PROGRAM_MATRIX_STACK_DEPTH" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_INSTRUCTIONS_ARB, "MAX_PROGRAM_INSTRUCTIONS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB, "MAX_PROGRAM_ALU_INSTRUCTIONS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB, "MAX_PROGRAM_TEX_INSTRUCTIONS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB, "MAX_PROGRAM_TEX_INDIRECTIONS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_TEMPORARIES_ARB, "MAX_PROGRAM_TEMPORARIES" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_PARAMETERS_ARB, "MAX_PROGRAM_PARAMETERS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_ATTRIBS_ARB, "MAX_PROGRAM_ATTRIBS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB, "MAX_PROGRAM_NATIVE_INSTRUCTIONS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB, "MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB, "MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB, "MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB, "MAX_PROGRAM_NATIVE_TEMPORARIES" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB, "MAX_PROGRAM_NATIVE_PARAMETERS" },
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB, "MAX_PROGRAM_NATIVE_ATTRIBS" },
{0,0,QString()}
};
#endif
#ifdef GL_ARB_vertex_program
const struct token_name arb_vp[] = {
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_ENV_PARAMETERS_ARB,"MAX_PROGRAM_ENV_PARAMETERS"},
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB,"MAX_PROGRAM_LOCAL_PARAMETERS"},
{ 1, GL_MAX_VERTEX_ATTRIBS_ARB, "MAX_VERTEX_ATTRIBS"},
{ 1, GL_MAX_PROGRAM_MATRICES_ARB,"MAX_PROGRAM_MATRICES"},
{ 1, GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB,"MAX_PROGRAM_MATRIX_STACK_DEPTH"},
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_INSTRUCTIONS_ARB,"MAX_PROGRAM_INSTRUCTIONS"},
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_TEMPORARIES_ARB,"MAX_PROGRAM_TEMPORARIES"},
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_PARAMETERS_ARB,"MAX_PROGRAM_PARAMETERS"},
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_ATTRIBS_ARB,"MAX_PROGRAM_ATTRIBS"},
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB,"MAX_PROGRAM_ADDRESS_REGISTERS"},
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB,"MAX_PROGRAM_NATIVE_INSTRUCTIONS"},
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB,"MAX_PROGRAM_NATIVE_TEMPORARIES"},
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB,"MAX_PROGRAM_NATIVE_PARAMETERS"},
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB,"MAX_PROGRAM_NATIVE_ATTRIBS"},
{ 1 | KCMGL_PROG, GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB ,"MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS"},
{0,0,QString()}
};
#endif
#ifdef GL_ARB_vertex_shader
const struct token_name arb_vs[] = {
{ 1, GL_MAX_VERTEX_ATTRIBS_ARB,"MAX_VERTEX_ATTRIBS"},
{ 1, GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB,"MAX_VERTEX_UNIFORM_COMPONENTS"},
{ 1, GL_MAX_VARYING_FLOATS_ARB,"MAX_VARYING_FLOATS"},
{ 1, GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB,"MAX_COMBINED_TEXTURE_IMAGE_UNITS"},
{ 1, GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB,"MAX_VERTEX_TEXTURE_IMAGE_UNITS"},
{ 1, GL_MAX_TEXTURE_IMAGE_UNITS_ARB,"MAX_TEXTURE_IMAGE_UNITS"},
{ 1, GL_MAX_TEXTURE_COORDS_ARB,"MAX_TEXTURE_COORDS"},
{0,0,QString()}
};
#endif
#ifdef GL_ARB_fragment_shader
const struct token_name arb_fs[] = {
{ 1, GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB,"MAX_FRAGMENT_UNIFORM_COMPONENTS"},
{ 1, GL_MAX_TEXTURE_IMAGE_UNITS_ARB,"MAX_TEXTURE_IMAGE_UNITS"},
{ 1, GL_MAX_TEXTURE_COORDS_ARB,"MAX_TEXTURE_COORDS"},
{0,0,QString()}
};
#endif
const struct token_name frame_buffer_props[] = {
{ 2, GL_MAX_VIEWPORT_DIMS, i18n("Max. viewport dimensions") },
{ 1, GL_SUBPIXEL_BITS, i18n("Subpixel bits") },
{ 1, GL_AUX_BUFFERS, i18n("Aux. buffers")},
{0,0,QString()}
};
const struct token_group groups[] =
{
{KCMGL_SIZE(frame_buffer_props), 0, frame_buffer_props, i18n("Frame buffer properties"), NULL},
{KCMGL_SIZE(various_limits), 0, texture_limits, i18n("Texturing"), NULL},
{KCMGL_SIZE(various_limits), 0, various_limits, i18n("Various limits"), NULL},
{KCMGL_SIZE(float_limits), 0, float_limits, i18n("Points and lines"), NULL},
{KCMGL_SIZE(stack_depth), 0, stack_depth, i18n("Stack depth limits"), NULL},
#ifdef GL_ARB_vertex_program
{KCMGL_SIZE(arb_vp), GL_VERTEX_PROGRAM_ARB, arb_vp, "ARB_vertex_program", "GL_ARB_vertex_program"},
#endif
#ifdef GL_ARB_fragment_program
{KCMGL_SIZE(arb_fp), GL_FRAGMENT_PROGRAM_ARB, arb_fp, "ARB_fragment_program", "GL_ARB_fragment_program"},
#endif
#ifdef GL_ARB_vertex_shader
{KCMGL_SIZE(arb_vs), 0, arb_vs, "ARB_vertex_shader", "GL_ARB_vertex_shader"},
#endif
#ifdef GL_ARB_fragment_shader
{KCMGL_SIZE(arb_fs), 0, arb_fs, "ARB_fragment_shader", "GL_ARB_fragment_shader"},
#endif
};
#if defined(GLX_ARB_get_proc_address) && defined(PFNGLGETPROGRAMIVARBPROC)
if (getProcAddress && strstr(glExtensions, "GL_ARB_vertex_program"))
kcm_glGetProgramivARB = (PFNGLGETPROGRAMIVARBPROC) glXGetProcAddressARB((const GLubyte *)"glGetProgramivARB");
#else
Q_UNUSED(getProcAddress);
#endif
for (uint i = 0; i<KCMGL_SIZE(groups); i++) {
if (groups[i].ext && !strstr(glExtensions, groups[i].ext)) continue;
if (l2) l2 = newItem(l1, l2, groups[i].descr);
else l2 = newItem(l1, groups[i].descr);
l3 = NULL;
const struct token_name *cur_token;
for (cur_token = groups[i].group; cur_token->type; cur_token++) {
bool tfloat = cur_token->type & KCMGL_FLOAT;
int count = KCMGL_COUNT_MASK(cur_token->type);
GLint max[2]={0,0};
GLfloat fmax[2]={0.0,0.0};
#if defined(PFNGLGETPROGRAMIVARBPROC) && defined(GL_ARB_vertex_program)
bool tprog = cur_token->type & KCMGL_PROG;
if (tprog && kcm_glGetProgramivARB)
kcm_glGetProgramivARB(groups[i].type, cur_token->token, max);
else
#endif
if (tfloat) glGetFloatv(cur_token->token, fmax);
else glGetIntegerv(cur_token->token, max);
if (glGetError() == GL_NONE) {
QString s;
if (!tfloat && count == 1) s = QString::number(max[0]); else
if (!tfloat && count == 2) s = QString("%1, %2").arg(max[0]).arg(max[1]); else
if (tfloat && count == 2) s = QString("%1 - %2").arg(fmax[0],0,'f',6).arg(fmax[1],0,'f',6); else
if (tfloat && count == 1) s = QString::number(fmax[0],'f',6);
if (l3) l3 = newItem(l2, l3, cur_token->name, s);
else l3 = newItem(l2, cur_token->name, s);
}
}
}
}
#endif
static QTreeWidgetItem *print_screen_info(QTreeWidgetItem *l1, QTreeWidgetItem *after)
{
QTreeWidgetItem *l2 = NULL, *l3 = NULL;
if (after) {
l1 = newItem(l1, after, IsDirect ? i18n("Direct Rendering") : i18n("Indirect Rendering"));
} else {
l1 = newItem(l1, IsDirect ? i18n("Direct Rendering") : i18n("Indirect Rendering"));
}
if (IsDirect) {
if (get_dri_device()) {
l2 = newItem(l1, i18n("3D Accelerator"));
l2->setExpanded(true);
l3 = newItem(l2, l3, i18n("Vendor"), dri_info.vendor);
l3 = newItem(l2, l3, i18n("Device"), dri_info.device);
l3 = newItem(l2, l3, i18n("Subvendor"), dri_info.subvendor);
l3 = newItem(l2, l3, i18n("Revision"), dri_info.rev);
} else {
l2 = newItem(l1, l2, i18n("3D Accelerator"), i18n("unknown"));
}
}
if (l2) {
l2 = newItem(l1, l2, i18n("Driver"));
}else{
l2 = newItem(l1, i18n("Driver"));
}
l2->setExpanded(true);
l3 = newItem(l2, i18n("Vendor"), gli.glVendor);
l3 = newItem(l2, l3, i18n("Renderer"), gli.glRenderer);
l3 = newItem(l2, l3, i18n("OpenGL/ES version"), gli.glVersion);
if (IsDirect) {
if (dri_info.module.isEmpty()) dri_info.module = i18n("unknown");
l3 = newItem(l2, l3, i18n("Kernel module"), dri_info.module);
}
l3 = newItem(l2, l3, i18n("OpenGL/ES extensions"));
print_extension_list(gli.glExtensions, l3);
#ifndef KCM_ENABLE_OPENGLES
l3 = newItem(l2, l3, i18n("Implementation specific"));
print_limits(l3, gli.glExtensions, strstr(gli.clientExtensions, "GLX_ARB_get_proc_address") != NULL);
#endif
return l1;
}
#ifndef KCM_ENABLE_OPENGLES
void print_glx_glu(QTreeWidgetItem *l1, QTreeWidgetItem *l2)
{
QTreeWidgetItem *l3;
l2 = newItem(l1, l2, i18n("GLX"));
l3 = newItem(l2, i18n("server GLX vendor"), gli.serverVendor);
l3 = newItem(l2, l3, i18n("server GLX version"), gli.serverVersion);
l3 = newItem(l2, l3, i18n("server GLX extensions"));
print_extension_list(gli.serverExtensions, l3);
l3 = newItem(l2, l3, i18n("client GLX vendor") ,gli.clientVendor);
l3 = newItem(l2, l3, i18n("client GLX version"), gli.clientVersion);
l3 = newItem(l2, l3, i18n("client GLX extensions"));
print_extension_list(gli.clientExtensions, l3);
l3 = newItem(l2, l3, i18n("GLX extensions"));
print_extension_list(gli.glxExtensions, l3);
l2 = newItem(l1, l2, i18n("GLU"));
l3 = newItem(l2, i18n("GLU version"), gli.gluVersion);
l3 = newItem(l2, l3, i18n("GLU extensions"));
print_extension_list(gli.gluExtensions, l3);
}
#else
void print_egl(QTreeWidgetItem *l1, QTreeWidgetItem *l2)
{
QTreeWidgetItem *l3;
l2 = newItem(l1, l2, i18n("EGL"));
l3 = newItem(l2, i18n("EGL Vendor"), gli.eglVendor);
l3 = newItem(l2, l3, i18n("EGL Version"), gli.eglVersion);
l3 = newItem(l2, l3, i18n("EGL Extensions"));
print_extension_list(gli.eglExtensions, l3);
}
#endif
static QTreeWidgetItem *get_gl_info(Display *dpy, int scrnum, Bool allowDirect, QTreeWidgetItem *l1, QTreeWidgetItem *after)
{
Window win;
XSetWindowAttributes attr;
unsigned long mask;
Window root;
XVisualInfo *visinfo;
int width = 100, height = 100;
QTreeWidgetItem *result = after;
root = RootWindow(dpy, scrnum);
#ifndef KCM_ENABLE_OPENGLES
const int attribSingle[] = {
GLX_RGBA,
GLX_RED_SIZE, 1,
GLX_GREEN_SIZE, 1,
GLX_BLUE_SIZE, 1,
None };
const int attribDouble[] = {
GLX_RGBA,
GLX_RED_SIZE, 1,
GLX_GREEN_SIZE, 1,
GLX_BLUE_SIZE, 1,
GLX_DOUBLEBUFFER,
None };
GLXContext ctx;
visinfo = glXChooseVisual(dpy, scrnum, const_cast<int*>(attribSingle));
if (!visinfo) {
visinfo = glXChooseVisual(dpy, scrnum, const_cast<int*>(attribDouble));
if (!visinfo) {
kDebug() << "Error: couldn't find RGB GLX visual\n";
return result;
}
}
#else
Q_UNUSED(allowDirect);
static const EGLint attribs[] = {
EGL_RED_SIZE, 1,
EGL_GREEN_SIZE, 1,
EGL_BLUE_SIZE, 1,
EGL_DEPTH_SIZE, 1,
EGL_NONE
};
static const EGLint ctx_attribs[] = {
EGL_CONTEXT_CLIENT_VERSION, 2,
EGL_NONE
};
XVisualInfo visTemplate;
int num_visuals;
EGLDisplay egl_dpy;
EGLSurface surf;
EGLContext ctx;
EGLConfig config;
EGLint num_configs;
EGLint vid, major, minor;
egl_dpy = eglGetDisplay(dpy);
if (!egl_dpy) {
kDebug() << "Error: eglGetDisplay() failed\n";
return result;
}
if (!eglInitialize(egl_dpy, &major, &minor)) {
kDebug() << "Error: eglInitialize() failed\n";
return result;
}
if (!eglChooseConfig(egl_dpy, attribs, &config, 1, &num_configs)) {
kDebug() << "Error: couldn't get an EGL visual config\n";
return result;
}
if (!eglGetConfigAttrib(egl_dpy, config, EGL_NATIVE_VISUAL_ID, &vid)) {
kDebug() << "Error: eglGetConfigAttrib() failed\n";
return result;
}
visTemplate.visualid = vid;
visinfo = XGetVisualInfo(dpy, VisualIDMask, &visTemplate, &num_visuals);
if (!visinfo) {
kDebug() << "Error: couldn't get X visual\n";
return result;
}
#endif
attr.background_pixel = 0;
attr.border_pixel = 0;
attr.colormap = XCreateColormap(dpy, root, visinfo->visual, AllocNone);
attr.event_mask = StructureNotifyMask | ExposureMask;
mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
win = XCreateWindow(dpy, root, 0, 0, width, height,
0, visinfo->depth, InputOutput,
visinfo->visual, mask, &attr);
#ifndef KCM_ENABLE_OPENGLES
ctx = glXCreateContext( dpy, visinfo, NULL, allowDirect );
if (!ctx) {
kDebug() << "Error: glXCreateContext failed\n";
XDestroyWindow(dpy, win);
return result;
}
if (glXMakeCurrent(dpy, win, ctx)) {
gli.serverVendor = glXQueryServerString(dpy, scrnum, GLX_VENDOR);
gli.serverVersion = glXQueryServerString(dpy, scrnum, GLX_VERSION);
gli.serverExtensions = glXQueryServerString(dpy, scrnum, GLX_EXTENSIONS);
gli.clientVendor = glXGetClientString(dpy, GLX_VENDOR);
gli.clientVersion = glXGetClientString(dpy, GLX_VERSION);
gli.clientExtensions = glXGetClientString(dpy, GLX_EXTENSIONS);
gli.glxExtensions = glXQueryExtensionsString(dpy, scrnum);
gli.glVendor = (const char *) glGetString(GL_VENDOR);
gli.glRenderer = (const char *) glGetString(GL_RENDERER);
gli.glVersion = (const char *) glGetString(GL_VERSION);
gli.glExtensions = (const char *) glGetString(GL_EXTENSIONS);
gli.displayName = NULL;
gli.gluVersion = (const char *) gluGetString(GLU_VERSION);
gli.gluExtensions = (const char *) gluGetString(GLU_EXTENSIONS);
IsDirect = glXIsDirect(dpy, ctx);
result = print_screen_info(l1, after);
}
else {
kDebug() << "Error: glXMakeCurrent failed\n";
}
glXDestroyContext(dpy, ctx);
#else
eglBindAPI(EGL_OPENGL_ES_API);
ctx = eglCreateContext(egl_dpy, config, EGL_NO_CONTEXT, ctx_attribs);
if (!ctx) {
kDebug() << "Error: eglCreateContext failed\n";
XDestroyWindow(dpy, win);
return result;
}
surf = eglCreateWindowSurface(egl_dpy, config, win, NULL);
if (!surf) {
kDebug() << "Error: eglCreateWindowSurface failed\n";
eglDestroyContext(egl_dpy, ctx);
XDestroyWindow(dpy, win);
return result;
}
if (eglMakeCurrent(egl_dpy, surf, surf, ctx)) {
gli.eglVendor = eglQueryString(egl_dpy, EGL_VENDOR);
gli.eglVersion = eglQueryString(egl_dpy, EGL_VERSION);
gli.eglExtensions = eglQueryString(egl_dpy, EGL_EXTENSIONS);
gli.glVendor = (const char *) glGetString(GL_VENDOR);
gli.glRenderer = (const char *) glGetString(GL_RENDERER);
gli.glVersion = (const char *) glGetString(GL_VERSION);
gli.glExtensions = (const char *) glGetString(GL_EXTENSIONS);
gli.displayName = NULL;
IsDirect = TRUE;
result = print_screen_info(l1, after);
}
else {
kDebug() <<"Error: eglMakeCurrent() failed\n";
}
eglDestroyContext(egl_dpy, ctx);
eglDestroySurface(egl_dpy, surf);
#endif
XDestroyWindow(dpy, win);
return result;
}
bool GetInfo_OpenGL(QTreeWidget *treeWidget)
{
QTreeWidgetItem *l1, *l2 = NULL;
char *displayName = NULL;
Display *dpy;
int numScreens, scrnum;
dpy = XOpenDisplay(displayName);
if (!dpy) {
// kDebug() << "Error: unable to open display " << displayName;
return false;
}
QTreeWidgetItem *header = new QTreeWidgetItem();
header->setText(0, i18n("Information"));
header->setText(1, i18n("Value"));
treeWidget->setHeaderItem(header);
treeWidget->setRootIsDecorated(false);
l1 = new QTreeWidgetItem(treeWidget);
l1->setText(0, i18n("Name of the Display"));
l1->setText(1, DisplayString(dpy));
l1->setExpanded(true);
l1->setFlags(Qt::ItemIsEnabled);
numScreens = ScreenCount(dpy);
scrnum = 0;
#ifdef KCMGL_MANY_SCREENS
for (; scrnum < numScreens; scrnum++)
#endif
{
#ifndef KCM_ENABLE_OPENGLES
mesa_hack(dpy, scrnum);
#endif
l2 = get_gl_info(dpy, scrnum, true, l1, l2);
if (l2) l2->setExpanded(true);
#ifndef KCM_ENABLE_OPENGLES
if (IsDirect) l2 = get_gl_info(dpy, scrnum, false, l1, l2);
#endif
// TODO print_visual_info(dpy, scrnum, mode);
}
#ifndef KCM_ENABLE_OPENGLES
if (l2)
print_glx_glu(l1, l2);
else
KMessageBox::error(0, i18n("Could not initialize OpenGL"));
#else
if (l2)
print_egl(l1, l2);
else
KMessageBox::error(0, i18n("Could not initialize OpenGL ES2.0"));
#endif
treeWidget->resizeColumnToContents(0);
treeWidget->resizeColumnToContents(1);
XCloseDisplay(dpy);
return true;
}
|