-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.8.4
-
-
e413c726c (tqtc/lts-6.8)
A minimal snippet:
import QtQuick Window { width: 640 height: 480 visible: true title: qsTr("Hello World") color: "transparent" flags: Qt.FramelessWindowHint Text { anchors.centerIn: parent text: "Hello World!" font.pixelSize: 30 } }
With 6.8.4, the default Direct3D result looks like:
Transparent background with text visible. Perfect.
With 6.8.4, the result of
QQuickView::setGraphicsApi(QSGRendererInterface::OpenGL);
looks like:
Well, you can't see anything. It is completely black.
The problem does not happen back in 6.8.3. Both OpenGL and Direct3D render the window as expected.