define Mesh class
This commit is contained in:
parent
02edf0302d
commit
e8a3dcf48d
2 changed files with 54 additions and 0 deletions
28
Mesh.cpp
Normal file
28
Mesh.cpp
Normal 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
26
Mesh.h
Normal 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();
|
||||||
|
};
|
Reference in a new issue