mirror of
https://github.com/YACReader/yacreader
synced 2025-06-03 09:08:20 -04:00
16 lines
232 B
C++
16 lines
232 B
C++
#ifndef OPENGL_CHECKER_H
|
|
#define OPENGL_CHECKER_H
|
|
|
|
#include <QOpenGLContext>
|
|
|
|
class OpenGLChecker
|
|
{
|
|
public:
|
|
OpenGLChecker();
|
|
bool hasCompatibleOpenGLVersion();
|
|
private:
|
|
//??
|
|
};
|
|
|
|
#endif // OPENGL_CHECKER_H
|