Added VertexMapper constructor

Removed useless headers


Former-commit-id: e8925f48eec9c52dc4f2ad7bf6a61deb755bc0ee
This commit is contained in:
Lynix
2014-08-03 20:58:09 +02:00
parent 0415f32b86
commit 7a2a10b390
3 changed files with 18 additions and 10 deletions

View File

@@ -9,18 +9,15 @@
#include <Nazara/Prerequesites.hpp>
#include <Nazara/Core/SparsePtr.hpp>
#include <Nazara/Math/Vector2.hpp>
#include <Nazara/Math/Vector3.hpp>
#include <Nazara/Utility/BufferMapper.hpp>
#include <Nazara/Utility/Enums.hpp>
#include <Nazara/Utility/Mesh.hpp>
#include <Nazara/Utility/VertexDeclaration.hpp>
class NzSubMesh;
class NAZARA_API NzVertexMapper
{
public:
NzVertexMapper(NzVertexBuffer* vertexBuffer, unsigned int vertexCount);
NzVertexMapper(NzSubMesh* subMesh);
~NzVertexMapper();
@@ -31,7 +28,6 @@ class NAZARA_API NzVertexMapper
private:
NzBufferMapper<NzVertexBuffer> m_mapper;
NzVertexDeclarationConstRef m_declaration;
unsigned int m_vertexCount;
};