Add show if opengl core profile used in about widget
parent
6ffbdc9c7b
commit
2156855444
|
@ -8,7 +8,7 @@
|
||||||
AboutWidget::AboutWidget()
|
AboutWidget::AboutWidget()
|
||||||
{
|
{
|
||||||
QTextEdit *versionInfoLabel = new QTextEdit;
|
QTextEdit *versionInfoLabel = new QTextEdit;
|
||||||
versionInfoLabel->setText(QString("%1 %2 (version: %3 build: %4 %5)\nopengl: %6 shader: %7").arg(APP_NAME).arg(APP_HUMAN_VER).arg(APP_VER).arg(__DATE__).arg(__TIME__).arg((char *)glGetString(GL_VERSION)).arg((char *)glGetString(GL_SHADING_LANGUAGE_VERSION)));
|
versionInfoLabel->setText(QString("%1 %2 (version: %3 build: %4 %5)\nopengl: %6 shader: %7 core: %8").arg(APP_NAME).arg(APP_HUMAN_VER).arg(APP_VER).arg(__DATE__).arg(__TIME__).arg((char *)glGetString(GL_VERSION)).arg((char *)glGetString(GL_SHADING_LANGUAGE_VERSION)).arg(QSurfaceFormat::defaultFormat().profile() == QSurfaceFormat::CoreProfile ? "true" : "false"));
|
||||||
versionInfoLabel->setReadOnly(true);
|
versionInfoLabel->setReadOnly(true);
|
||||||
|
|
||||||
QVBoxLayout *mainLayout = new QVBoxLayout;
|
QVBoxLayout *mainLayout = new QVBoxLayout;
|
||||||
|
|
Loading…
Reference in New Issue