DirectXTK全称是DirectXToolKit,包含一组在C++中编写DirectX11.x代码的助手类。
示例代码:
std::uique_ptr<SpriteBatch> spriteBatch(ew SpriteBatch(deviceCotext));std::uique_ptr<SpriteFot> spriteFot(ew SpriteFot(device, L"myfile.spritefot"));spriteBatch->Begi();spriteFot->DrawStrig(spriteBatch.get(), L"Hello, world!", XMFLOAT2(x, y));spriteBatch->Ed();
评论