define Mesh class

This commit is contained in:
lightling 2022-01-15 14:54:08 -05:00
parent 02edf0302d
commit e8a3dcf48d
Signed by: lightling
GPG key ID: 016F11E0AA296B67
2 changed files with 54 additions and 0 deletions

28
Mesh.cpp Normal file
View file

@ -0,0 +1,28 @@
#include "Mesh.h"
Mesh::Mesh(Vertex* _vertices, int _vertexCount, unsigned int* _indices, int _indexCount, Microsoft::WRL::ComPtr<ID3D11Device> _device, Microsoft::WRL::ComPtr<ID3D11DeviceContext> _context)
{
}
Mesh::~Mesh()
{
}
void Mesh::Draw()
{
}
Microsoft::WRL::ComPtr<ID3D11Buffer>* Mesh::GetVertexBuffer()
{
return nullptr;
}
Microsoft::WRL::ComPtr<ID3D11Buffer>* Mesh::GetIndexBuffer()
{
return nullptr;
}
int Mesh::GetIndexCount()
{
return 0;
}

26
Mesh.h Normal file
View file

@ -0,0 +1,26 @@
#pragma once
#include <d3d11.h>
#include <wrl/client.h>
#include "Vertex.h"
class Mesh
{
private:
Microsoft::WRL::ComPtr<ID3D11Buffer> bufferVertex;
Microsoft::WRL::ComPtr<ID3D11Buffer> bufferIndex;
public:
Mesh(
Vertex* _vertices,
int _vertexCount,
unsigned int* _indices,
int _indexCount,
Microsoft::WRL::ComPtr<ID3D11Device> _device,
Microsoft::WRL::ComPtr<ID3D11DeviceContext> _context);
~Mesh();
void Draw();
Microsoft::WRL::ComPtr<ID3D11Buffer>* GetVertexBuffer();
Microsoft::WRL::ComPtr<ID3D11Buffer>* GetIndexBuffer();
int GetIndexCount();
};