Problem Description:
My Qt Windows application crashes when changing display configurations (e.g. resolution changes, multi-monitor setup modifications). The crash occurs specifically in a PmsDialogWidget
containing a QWebEngineView, with the call stack indicating ANGLE/D3D11-related operations.
Key Code Snippets:
// Widget initialization
PmsDialogWidget::PmsDialogWidget(QWidget* parent) : QWidget(parent) {
ui.setupUi(this);
this->setWindowFlags(Qt::FramelessWindowHint);
this->setAttribute(Qt::WA_StyledBackground, true);
webView = new QWebEngineView(ui.widgetPms); // Parent tied to main display
webChannel = new QWebChannel(ui.widgetPms);
}
Reproduction Steps:
Start application on primary display (1080P @ 100% scaling) Connect secondary display (2K @ 100% scaling) Drag window between displays Change display resolution on either monitor Crash occurs during ANGLE device reset Observed Behavior:
ACCESS_VIOLATION in libGLESv2.dll during glWaitSync ANGLE logs show DXGI_ERROR_DEVICE_REMOVED Crash specifically occurs when parent window spans different DPI displays Environment:
Qt 5.15.2 with ANGLE backend Windows 11 22H2 NVIDIA RTX 750i
STACK_TEXT:
0000006abe6f4510 00007ffd
46d2cf53 : 0000000000000000 0000006a
be6f4810 0000000000007ff3 00000000
00000018 : libGLESv2!glWaitSync+0x43e64
0000006abe6f4750 00007ffd
46d2cdb3 : 0000000000000000 00000000
00000000 0000000000000000 00000000
00040102 : libGLESv2!ANGLEResetDisplayPlatform+0xbb2b3
0000006abe6f47e0 00007ffd
770fb643 : 0000000000000001 00000000
80000012 0000006abe6f49f8 00000000
00040102 : libGLESv2!ANGLEResetDisplayPlatform+0xbb113
0000006abe6f4830 00007ffd
770fa7a3 : 000001f026e523b0 00007ffd
46d2cd50 0000000000000005 00000000
00000000 : user32!UserCallWinProcCheckWow+0x503
0000006abe6f4990 00007ffd
770fc0bf : 0000000000040102 00000000
00000000 0000000000000000 00000000
04380780 : user32!SendMessageWorker+0x223
0000006abe6f4a40 00007ffd
770fbd44 : 0000000000040102 00007ffd
77118765 000001f028270900 000001f0
26e523b0 : user32!RealDefWindowProcWorker+0x2df
0000006abe6f4b00 00007ffd
721d77f4 : 000001f028270900 00000000
00000000 0000006abe6f4c50 00000000
00000000 : user32!RealDefWindowProcW+0x134
0000006abe6f4b50 00007ffd
721d7741 : 0000000000000000 00000000
00000000 0000000000000000 0000006a
be6f5350 : uxtheme!_ThemeDefWindowProc+0xa4
0000006abe6f4ca0 00007ffd
770fba8a : 000061d53d82b859 00000000
00000000 000001f039fcc510 00000000
00000000 : uxtheme!ThemeDefWindowProcW+0x11
0000006abe6f4ce0 00007ffd
651d44f8 : 0000000000000000 00000000
00000047 0000000000000001 00007ffd
7829a05e : user32!DefWindowProcW+0xca
0000006abe6f4d40 00007ffd
770fb643 : 0000000080000012 00000000
00040102 0000000100000000 00000000
80000012 : qwindows+0x144f8
I want to know Why it happened and how can I solve it.