DirectX 10 视频模式切换和性能

发布于 2024-07-13 01:24:16 字数 139 浏览 5 评论 0原文

在 DirectX 10 应用程序中,全屏和窗口模式之间的切换是否会产生任何类型的开销,例如必须重新创建纹理和/或顶点缓冲区?

换句话说,我是否可以构建一个旨在在窗口模式和全屏模式之间进行“大量”切换的应用程序,而不会在切换发生时遭受性能影响?

In a DirectX 10 application, does switching between fullscreen and windowed mode incur any sort of overhead like having to recreate textures and/or vertexbuffers?

In other words, can I build an application that is designed to do "a lot" of switching between windowed mode and fullscreen mode without having to suffer a performance hit when the switches occur?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

傲鸠 2024-07-20 01:24:16

在DirectX10中有DXGI。 您使用交换链。 交换链的缓冲区需要调整大小,因此会产生一些开销(当然),但据说是经过优化的。 我担心的是切换视图模式会导致用户癫痫发作。

http://msdn.microsoft.com/en-us /library/bb205075(VS.85).aspx

In DirectX10 there is DXGI. You use a swap chain. The buffer of the swap chain will need to be resized so there is some overhead (of course) but it is supposedly optimized. The thing I would be worried about is causing epileptic seizures on your users by switching view modes.

http://msdn.microsoft.com/en-us/library/bb205075(VS.85).aspx

萌酱 2024-07-20 01:24:16

在 D3D10 中,您无需在模式切换时重新创建纹理、缓冲区或任何 D3D 资源。 一个值得注意的例外是,在 ResizeBuffers 调用之后需要更新交换链后台缓冲区引用(应该这样做以获得最佳全屏性能),但这在性能方面并不是什么大问题。

尽管如此,这并不意味着模式改变是便宜的。 模式更改操作本身对于您的应用程序和系统的其余部分来说都是非常昂贵的(特别是在 Vista 中,DWM 需要重新启动)。 Win7改进了很多,所以我建议你玩一下它,看看它是否满足你的性能要求,但不要指望立即过渡。

In D3D10, you don't need to recreate your textures, buffers or any D3D resources on mode switch. One notable exception is swapchain backbuffer references need to be updated after ResizeBuffers call (which should be done for optimal fullscreen performance), but it's not that big of a deal in terms of performance.

Still, it doesn't mean mode change is cheap. Mode change operation itself is very expensive both for your app and the rest of the system (particularly, in Vista, DWM needs to be restarted). Win7 improved a lot, so I suggest you play with it and see if it meets your performance requirements, but don't expect instant transition.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文