#pragma once #include #include #include "Vertex.h" class Mesh { public: Mesh( Vertex* _vertices, int _vertexCount, unsigned int* _indices, int _indexCount, Microsoft::WRL::ComPtr _device, Microsoft::WRL::ComPtr _context); Mesh( const char* _file, Microsoft::WRL::ComPtr _device, Microsoft::WRL::ComPtr _context); ~Mesh(); void Draw(); Microsoft::WRL::ComPtr* GetVertexBuffer(); Microsoft::WRL::ComPtr* GetIndexBuffer(); int GetIndexCount(); private: Microsoft::WRL::ComPtr bufferVertex; Microsoft::WRL::ComPtr bufferIndex; Microsoft::WRL::ComPtr deviceContext; int countIndex; void CalculateTangents( Vertex* _verts, int _numVerts, unsigned int* _indices, int _numIndices); void CreateMesh( Vertex* _vertices, int _vertexCount, unsigned int* _indices, int _indexCount, Microsoft::WRL::ComPtr _device, Microsoft::WRL::ComPtr _context); };