Play-/Source/ui_qt/openglwindow.cpp

23 lines
472 B
C++

#include "openglwindow.h"
OpenGLWindow::OpenGLWindow(QWindow* parent)
: OutputWindow(parent)
{
setSurfaceType(QWindow::OpenGLSurface);
setFormat(GetSurfaceFormat());
}
QSurfaceFormat OpenGLWindow::GetSurfaceFormat()
{
QSurfaceFormat format;
#if defined(GLES_COMPATIBILITY)
format.setVersion(3, 0);
#else
format.setVersion(3, 2);
#endif
format.setProfile(QSurfaceFormat::CoreProfile);
format.setSwapBehavior(QSurfaceFormat::DoubleBuffer);
return format;
}