2013-04-18 03:29:41 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-06-13 19:50:06 +00:00
|
|
|
|
|
|
|
#ifndef _VERTEXMANAGER_H
|
|
|
|
#define _VERTEXMANAGER_H
|
|
|
|
|
2010-10-03 00:41:06 +00:00
|
|
|
#include "VertexManagerBase.h"
|
2011-03-14 09:38:29 +00:00
|
|
|
#include "LineGeometryShader.h"
|
|
|
|
#include "PointGeometryShader.h"
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2010-10-03 00:41:06 +00:00
|
|
|
namespace DX11
|
|
|
|
{
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2010-10-03 00:41:06 +00:00
|
|
|
class VertexManager : public ::VertexManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VertexManager();
|
2011-06-11 19:37:21 +00:00
|
|
|
~VertexManager();
|
2010-10-03 00:41:06 +00:00
|
|
|
|
2010-11-26 09:25:08 +00:00
|
|
|
NativeVertexFormat* CreateNativeVertexFormat();
|
2011-06-11 19:37:21 +00:00
|
|
|
void CreateDeviceObjects();
|
|
|
|
void DestroyDeviceObjects();
|
2012-10-20 13:22:15 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2012-10-26 14:34:02 +00:00
|
|
|
void PrepareDrawBuffers();
|
|
|
|
void Draw(u32 stride);
|
2010-10-03 00:41:06 +00:00
|
|
|
// temp
|
|
|
|
void vFlush();
|
2010-10-20 02:17:16 +00:00
|
|
|
|
2012-10-26 14:34:02 +00:00
|
|
|
u32 m_vertex_buffer_cursor;
|
|
|
|
u32 m_vertex_draw_offset;
|
|
|
|
u32 m_index_buffer_cursor;
|
|
|
|
u32 m_current_vertex_buffer;
|
|
|
|
u32 m_current_index_buffer;
|
|
|
|
u32 m_triangle_draw_index;
|
|
|
|
u32 m_line_draw_index;
|
|
|
|
u32 m_point_draw_index;
|
2012-10-20 13:22:15 +00:00
|
|
|
typedef ID3D11Buffer* PID3D11Buffer;
|
2012-10-26 14:34:02 +00:00
|
|
|
PID3D11Buffer* m_index_buffers;
|
|
|
|
PID3D11Buffer* m_vertex_buffers;
|
2011-03-14 09:38:29 +00:00
|
|
|
|
|
|
|
LineGeometryShader m_lineShader;
|
|
|
|
PointGeometryShader m_pointShader;
|
2010-10-03 00:41:06 +00:00
|
|
|
};
|
2010-06-13 19:50:06 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|