- 授权协议: MIT
- 开发语言: C/C++
- 操作系统: Windows
- 软件首页: https://github.com/Microsoft/DirectXTK
- 软件文档: https://github.com/Microsoft/DirectXTK
软件介绍
DirectXTK 全称是 DirectX Tool Kit ,包含一组在 C++ 中编写 DirectX 11.x 代码的助手类。
示例代码:
std::unique_ptr<SpriteBatch> spriteBatch(new SpriteBatch(deviceContext)); std::unique_ptr<SpriteFont> spriteFont(new SpriteFont(device, L"myfile.spritefont")); spriteBatch->Begin(); spriteFont->DrawString(spriteBatch.get(), L"Hello, world!", XMFLOAT2(x, y)); spriteBatch->End();
C++ Primer Plus
Stephen Prata / Addison Wesley / 2011-10-18 / GBP 39.99
C++ Primer Plus, Sixth Edition New C++11 Coverage C++ Primer Plus is a carefully crafted, complete tutorial on one of the most significant and widely used programming languages today. An accessible an......一起来看看 《C++ Primer Plus》 这本书的介绍吧!
