gpt4 book ai didi

c++ - Windows 7 64 位,Qt 4 : glGetVersion returns "1.1.0", nvogl32v.dll 被卸载

转载 作者:可可西里 更新时间:2023-11-01 12:57:14 27 4
gpt4 key购买 nike

情况

我正在开发使用 Qt 4 的 32 位应用程序,并且我在 Windows 7 64 位上工作。

我的程序有主要的非 OpenGL 小部件和用户可选择打开的 QGLWidget。

问题:

当我创建 QGLWidget 时,glGetVersion 报告“1.1.0”(我的硬件支持 OpenGL 4.3.0)。结果,我需要的许多功能根本无法工作(很明显,因为它们在 OpenGL 1 中不可用)。这个问题“有时”发生。

附加信息

如果我使用 gDebugger 启动程序,一切正常,并且 glGetVersion 返回“4.3.0”,如预期的那样。添加这一行:

QGLFormat::OpenGLVersionFlags flags = QGLFormat::openGLVersionFlags();

在 main() 函数的开头也修复了这个问题。

该应用程序在 WinXP 32 位上运行良好。

我在 2..3 年前为这个应用程序编写了 OpenGL 子系统,使用它的人说他们在虚拟机(Win7 或 vista guest)上遇到了类似的问题,但我不记得我是如何处理这个问题的那个时候。

OpenGL 初始化

OpenGL 初始化由 Qt 4 执行,没有 glew 或额外的库,使用 QGLWidget。

程序中只有一个QGLWidget。准确的说,有一个派生自QGLWidget的类,它的初始化是这样的:

DisplayWidget::DisplayWidget(QWidget* parent)
: QGLWidget(QGLFormat(QGL::DoubleBuffer | QGL::DepthBuffer), parent)

系统配置:
操作系统:Windows 7 64位。
编译器:MSVC2008 express SP1.
Qt:Qt 4.8.1(使用 MSVC2008 从支持 OpenSSL 的源代码编译)。Windows SDK:Windows Server 2008 和 .NET 3.5。显卡:GeForce 460 GTX

问题:

是什么导致了这个问题?

--更新--

“神奇修复”(OpenGLVersionFlags) 在完全重建后停止工作,现在应用程序不断初始化软件渲染器,即使在使用 gDebugger 启动时也是如此。

我机器上的所有其他 OpenGL 应用程序都可以正常工作并且可以使用着色器。

我使用最新的驱动程序。

有什么想法吗?

--更新--

经过一些测试后,我发现 google chrome 和 steam 客户端会以某种方式影响所有使用 OpenGL 的 Qt 应用程序。

如果我打开 Google Chrome 和 Steam,最终所有程序都将停止正常工作,并且将不再能够获得硬件加速 OpenGL。

如果我关闭 google chrome 并保持 steam 打开,则每第二次尝试启动硬件加速程序都会失败。

如果我同时关闭 steam 和 chrome,那么每个程序启动都会成功。

为什么会这样?

--更新--

我通读了调试器的输出,发现了一件非常有趣的事情:

'vdclient.exe': Loaded 'C:\Windows\SysWOW64\nvoglv32.dll'
First-chance exception at 0x777f47a5 (ntdll.dll) in vdclient.exe: 0xC0000005: Access violation reading location 0x05aa9000.
'vdclient.exe': Unloaded 'C:\Windows\SysWOW64\nvoglv32.dll'

基本上,当加载 nvoglv32.dll 时,“某些东西”在某处崩溃(调试器不会对此事件使用react,顺便说一下),系统决定卸载 nvoglv32.dll。看名字就知道是nvidia系统/驱动组件,没有这个组件就没有硬件加速。

当opengl正常运行时,这部分日志是这样的:

'vdclient.exe': Loaded 'C:\Windows\SysWOW64\nvoglv32.dll'
'vdclient.exe': Loaded 'C:\Windows\SysWOW64\ntmarta.dll', Symbols loaded (source information stripped).
'vdclient.exe': Loaded 'C:\Windows\SysWOW64\Wldap32.dll', Symbols loaded (source information stripped).
'vdclient.exe': Loaded 'C:\Windows\SysWOW64\powrprof.dll', Symbols loaded (source information stripped).
The thread 'Win32 Thread' (0x1744) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x1740) has exited with code 0 (0x0).
'vdclient.exe': Unloaded 'C:\Windows\SysWOW64\powrprof.dll'
The thread 'Win32 Thread' (0x1748) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x174c) has exited with code 0 (0x0).
'vdclient.exe': Loaded 'C:\Windows\SysWOW64\uxtheme.dll', Symbols loaded (source information stripped).

想法?

最佳答案

您是否使用 QGLFormat.setVersion + QGLFormat.setProfile 指定 OpenGL 版本?

QGLFormat glFormat;
glFormat.setVersion( 3, 2 );
glFormat.setProfile( QGLFormat::CoreProfile );
glFormat.setSampleBuffers( true );

QGLWidget w( glFormat );

另一个潜在的问题。您的 glGetVersion 应该在 OpenGL 上下文在 QGLWidget.initializeGL() 方法中初始化后调用。

关于c++ - Windows 7 64 位,Qt 4 : glGetVersion returns "1.1.0", nvogl32v.dll 被卸载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17045702/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com