Windows Vista Freecell 和 Solitaire 使用的图形库
Windows Vista 附带的纸牌和空当接龙游戏中使用什么图形库来创建图形(例如 XNA、GDI、WPF)?一个好的答案应该包括图书馆的名称和证据。
我用 dependency walker 查看了 solitaire.exe,它显示了对 gdi32.dll 和 gdiplus.dll 的许多调用,而且还调用 d3d9.dll 中的 Direct3DCreate9。
What graphics library is used to create the graphics in the Solitaire and Freecell games included with Windows Vista (e.g. XNA, GDI, WPF)? A good answer would include the name of the library and evidence.
I looked at solitaire.exe with dependency walker and it shows many calls to gdi32.dll and gdiplus.dll, but also a call to Direct3DCreate9 in d3d9.dll.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它通过 C++ COM 接口使用 Direct3D 9。您在调用 Direct3DCreate9 时获得了所需的所有证据;这就是游戏获取 IDirect3D9* 接口所需的全部内容,此时它可以创建设备接口等。
It uses Direct3D 9, via the C++ COM interfaces. You have all the evidence you need in the call to Direct3DCreate9; that is all that the game requires to get an IDirect3D9* interface, at which point it can create a device interface etc.