独立使用 Direct3D 的应用程序和 DLL
如果使用 Direct3D 绘制图形的应用程序加载一个想要执行相同操作的 DLL(尽管是独立的,在不同的窗口中),那么安全吗?
另外,两个 IDirect3DDevice9 可以渲染到同一个窗口吗?
If an application which is using Direct3D to draw graphics loads a DLL that wants to do the same (although independently, in a different window), is that safe?
Also, can two IDirect3DDevice9's render to the same window?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案是肯定的,DLL 可以独立于其加载应用程序而使用 DirectX。我仍然不知道两个应用程序是否可以绘制到同一个窗口。
The answer is yes, a DLL can use DirectX independently of it's loading application. I still don't know if two apps can draw to the same window.