mirror of
https://github.com/YACReader/yacreader
synced 2025-05-27 10:50:27 -04:00
19 lines
306 B
C++
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
|