Windows Vista Freecell 和 Solitaire 使用的图形库

发布于 2024-08-25 20:08:42 字数 274 浏览 2 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

徒留西风 2024-09-01 20:08:42

它通过 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.

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