Play-/Source/ui_qt/openglwindow.h

14 lines
222 B
C
Raw Permalink Normal View History

#pragma once
2016-07-01 05:21:58 +03:00
#include "outputwindow.h"
2016-07-01 05:21:58 +03:00
class OpenGLWindow : public OutputWindow
2016-07-01 05:21:58 +03:00
{
2018-04-30 21:01:23 +01:00
Q_OBJECT
2016-07-01 05:21:58 +03:00
public:
2018-04-30 21:01:23 +01:00
explicit OpenGLWindow(QWindow* parent = 0);
2019-07-24 18:58:25 -04:00
~OpenGLWindow() = default;
static QSurfaceFormat GetSurfaceFormat();
2016-07-01 05:21:58 +03:00
};