Files
yacreader/common/opengl_checker.h
Luis Ángel San Martín e3ec56aa43 Format code using clang-format
2019-05-30 19:46:37 +02:00

19 lines
306 B
C++

#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