Direct3D 设备大小调整
我的应用程序有一个与 Direct3D 设备关联的面板控件。我的问题是,当调整面板大小时,后台缓冲区不会相应地调整大小,这会导致 direct3d 显示质量较差。
如何调整面板大小以正确设置设备?
My application has a panel control associated with a Direct3D device. My problem is that when the panel is resized the backbuffer isn't resized accordingly witch leads to a bad quality in the direct3d display.
How can I handle my panel resizing to set up correctly the device?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
面板调整大小后调用 Device.TestCooperativeLevel() 解决了我的问题!
Calling Device.TestCooperativeLevel() after the panel resize solved my problem!