qt - Application crash with error - EGLFS: OpenGL windows cannot be mixed with others -
i've created basic project in qt creator.
file -> new project -> application -> qt quickcontrols application
without adding / modifying anything, compiled project , deployed on target system olimex board qt (compiled eglfs), using tslib. application started with
testapp -plugin tslib
application starts , clicking on file menu killing it. "eglfs: opengl windows cannot mixed others" error appears in terminal.
this main.qml
file.
import qtquick 2.5 import qtquick.controls 1.4
applicationwindow { visible: true width: 640 height: 480 title: qstr("hello world") menubar: menubar { menu { title: qstr("file") menuitem { text: qstr("&open") ontriggered: console.log("open action triggered"); } menuitem { text: qstr("exit") ontriggered: qt.quit(); } } } label { text: qstr("hello world") anchors.centerin: parent } }
i'm aware of fact there can 1 top opengl window , i'm not adding anything. appreciated.
this open issue, , work in progress.
Comments
Post a Comment