On MacOS platform, add menu bar (system-wide) items.

This commit is contained in:
Daisuke Cato
2016-10-15 09:17:35 +09:00
commit 23dc126a37
986 changed files with 90440 additions and 0 deletions

17
common/opengl_checker.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef OPENGL_CHECKER_H
#define OPENGL_CHECKER_H
#include <QOpenGLContext>
class OpenGLChecker
{
public:
OpenGLChecker();
bool hasCompatibleOpenGLVersion();
QString textVersionDescription();
private:
QString description;
bool compatibleOpenGLVersion;
};
#endif // OPENGL_CHECKER_H