This commit is contained in:
Felix Kauselmann
2015-05-08 21:06:03 +02:00
parent c02cbc8992
commit 81ed438239
6 changed files with 86 additions and 10 deletions

15
common/opengl_checker.h Normal file
View File

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