- 
    Bug 
- 
    Resolution: Out of scope
- 
    P4: Low 
- 
    None
- 
    4.8.0
- 
    None
- 
    [Display]
 Operating System: Windows 7 Ultimate, 64-bit (Service Pack 1)
 DirectX version: 11.0
 GPU processor: Quadro 600
 Driver version: 347.88
 Direct3D API version: 11
 Direct3D feature level: 11_0
 CUDA Cores: 96
 Core clock: 640 MHz
 Shader clock: 1280 MHz
 Memory data rate: 1600 MHz
 Memory interface: 128-bit
 Memory bandwidth: 25.60 GB/s
 Total available graphics memory: 5886 MB
 Dedicated video memory: 1024 MB DDR3
 System video memory: 0 MB
 Shared system memory: 4862 MB
 Video BIOS version: 70.08.2A.00.03
 IRQ: Not used
 Bus: PCI Express x16 Gen2
 Device Id: 10DE 0DF8 083510DE
 Part Number: 1033 0500
 
 [Components]
 
 nvui.dll 8.17.13.4788 NVIDIA User Experience Driver Component
 nvxdsync.exe 8.17.13.4788 NVIDIA User Experience Driver Component
 nvxdplcy.dll 8.17.13.4788 NVIDIA User Experience Driver Component
 nvxdbat.dll 8.17.13.4788 NVIDIA User Experience Driver Component
 nvxdapix.dll 8.17.13.4788 NVIDIA User Experience Driver Component
 NVCPL.DLL 8.17.13.4788 NVIDIA User Experience Driver Component
 nvCplUIR.dll 8.1.800.0 NVIDIA Control Panel
 nvCplUI.exe 8.1.800.0 NVIDIA Control Panel
 nvWSSR.dll 6.14.13.4788 NVIDIA Workstation Server
 nvWSS.dll 6.14.13.4788 NVIDIA Workstation Server
 nvViTvSR.dll 6.14.13.4788 NVIDIA Video Server
 nvViTvS.dll 6.14.13.4788 NVIDIA Video Server
 NVSTVIEW.EXE 7.17.13.4788 NVIDIA 3D Vision Photo Viewer
 NVSTTEST.EXE 7.17.13.4788 NVIDIA 3D Vision Test Application
 NVSTRES.DLL 7.17.13.4788 NVIDIA 3D Vision Module
 nvDispSR.dll 6.14.13.4788 NVIDIA Display Server
 NVMCTRAY.DLL 8.17.13.4788 NVIDIA Media Center Library
 nvDispS.dll 6.14.13.4788 NVIDIA Display Server
 NVCUDA.DLL 8.17.13.4788 NVIDIA CUDA 7.0.29 driver
 nvGameSR.dll 6.14.13.4788 NVIDIA 3D Settings Server
 nvGameS.dll 6.14.13.4788 NVIDIA 3D Settings Server
 [Display] Operating System: Windows 7 Ultimate, 64-bit (Service Pack 1) DirectX version: 11.0 GPU processor: Quadro 600 Driver version: 347.88 Direct3D API version: 11 Direct3D feature level: 11_0 CUDA Cores: 96 Core clock: 640 MHz Shader clock: 1280 MHz Memory data rate: 1600 MHz Memory interface: 128-bit Memory bandwidth: 25.60 GB/s Total available graphics memory: 5886 MB Dedicated video memory: 1024 MB DDR3 System video memory: 0 MB Shared system memory: 4862 MB Video BIOS version: 70.08.2A.00.03 IRQ: Not used Bus: PCI Express x16 Gen2 Device Id: 10DE 0DF8 083510DE Part Number: 1033 0500 [Components] nvui.dll 8.17.13.4788 NVIDIA User Experience Driver Component nvxdsync.exe 8.17.13.4788 NVIDIA User Experience Driver Component nvxdplcy.dll 8.17.13.4788 NVIDIA User Experience Driver Component nvxdbat.dll 8.17.13.4788 NVIDIA User Experience Driver Component nvxdapix.dll 8.17.13.4788 NVIDIA User Experience Driver Component NVCPL.DLL 8.17.13.4788 NVIDIA User Experience Driver Component nvCplUIR.dll 8.1.800.0 NVIDIA Control Panel nvCplUI.exe 8.1.800.0 NVIDIA Control Panel nvWSSR.dll 6.14.13.4788 NVIDIA Workstation Server nvWSS.dll 6.14.13.4788 NVIDIA Workstation Server nvViTvSR.dll 6.14.13.4788 NVIDIA Video Server nvViTvS.dll 6.14.13.4788 NVIDIA Video Server NVSTVIEW.EXE 7.17.13.4788 NVIDIA 3D Vision Photo Viewer NVSTTEST.EXE 7.17.13.4788 NVIDIA 3D Vision Test Application NVSTRES.DLL 7.17.13.4788 NVIDIA 3D Vision Module nvDispSR.dll 6.14.13.4788 NVIDIA Display Server NVMCTRAY.DLL 8.17.13.4788 NVIDIA Media Center Library nvDispS.dll 6.14.13.4788 NVIDIA Display Server NVCUDA.DLL 8.17.13.4788 NVIDIA CUDA 7.0.29 driver nvGameSR.dll 6.14.13.4788 NVIDIA 3D Settings Server nvGameS.dll 6.14.13.4788 NVIDIA 3D Settings Server
Toggling between the two tabs of the example application below causes flickering of the application in case Aero is enabled. (It might not flicker with each tab change.)
With windows classic no flickering occurs.
main.cpp
#include <QApplication> #include <QTableWidget> #include <QGLWidget> int main( int argc, char** argv ) { QApplication instance( argc, argv ); QTabWidget tabWidget; QGLWidget glWidget1; QGLWidget glWidget2; tabWidget.insertTab( 0, &glWidget1, "1" ); tabWidget.insertTab( 1, &glWidget2, "2" ); tabWidget.show(); QObject::connect( &instance, SIGNAL( lastWindowClosed() ), &instance, SLOT( quit() ) ); return instance.exec(); }
Not tested with other Qt versions.