remove buffers from game

This commit is contained in:
lightling 2022-01-15 16:34:33 -05:00
parent 9cf14c0bfa
commit b70072b7ee
Signed by: lightling
GPG key ID: 016F11E0AA296B67

4
Game.h
View file

@ -35,10 +35,6 @@ private:
// - This is a smart pointer for objects that abide by the // - This is a smart pointer for objects that abide by the
// Component Object Model, which DirectX objects do // Component Object Model, which DirectX objects do
// - More info here: https://github.com/Microsoft/DirectXTK/wiki/ComPtr // - More info here: https://github.com/Microsoft/DirectXTK/wiki/ComPtr
// Buffers to hold actual geometry data
Microsoft::WRL::ComPtr<ID3D11Buffer> vertexBuffer;
Microsoft::WRL::ComPtr<ID3D11Buffer> indexBuffer;
// Shaders and shader-related constructs // Shaders and shader-related constructs
Microsoft::WRL::ComPtr<ID3D11PixelShader> pixelShader; Microsoft::WRL::ComPtr<ID3D11PixelShader> pixelShader;