Warnings/GLWindow: Initialize the members of OpenGLWindow in the order they are defined.
This commit is contained in:
parent
d17557c02c
commit
64b612bd60
1 changed files with 2 additions and 2 deletions
|
@ -104,8 +104,8 @@ void EmuThread::run() {
|
|||
}
|
||||
|
||||
OpenGLWindow::OpenGLWindow(QWindow* parent, QWidget* event_handler, QOpenGLContext* shared_context)
|
||||
: QWindow(parent), event_handler(event_handler),
|
||||
context(new QOpenGLContext(shared_context->parent())) {
|
||||
: QWindow(parent), context(new QOpenGLContext(shared_context->parent())),
|
||||
event_handler(event_handler) {
|
||||
|
||||
// disable vsync for any shared contexts
|
||||
auto format = shared_context->format();
|
||||
|
|
Loading…
Reference in a new issue