2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:29:41 +00:00
|
|
|
// Refer to the license.txt file included.
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2017-07-20 05:25:31 +00:00
|
|
|
#include <d3d11.h>
|
2017-12-03 01:06:25 +00:00
|
|
|
|
|
|
|
#include <array>
|
2018-02-24 14:23:24 +00:00
|
|
|
#include <atomic>
|
2017-02-18 08:14:30 +00:00
|
|
|
#include <memory>
|
2017-12-03 01:06:25 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2017-07-20 05:25:31 +00:00
|
|
|
#include "VideoCommon/NativeVertexFormat.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/VertexManagerBase.h"
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2017-02-01 04:29:29 +00:00
|
|
|
struct ID3D11Buffer;
|
|
|
|
|
2010-10-03 00:41:06 +00:00
|
|
|
namespace DX11
|
|
|
|
{
|
2017-07-20 05:25:31 +00:00
|
|
|
class D3DBlob;
|
|
|
|
class D3DVertexFormat : public NativeVertexFormat
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
D3DVertexFormat(const PortableVertexDeclaration& vtx_decl);
|
|
|
|
~D3DVertexFormat();
|
2017-09-08 09:42:56 +00:00
|
|
|
ID3D11InputLayout* GetInputLayout(D3DBlob* vs_bytecode);
|
2017-07-20 05:25:31 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::array<D3D11_INPUT_ELEMENT_DESC, 32> m_elems{};
|
|
|
|
UINT m_num_elems = 0;
|
|
|
|
|
2018-02-24 14:23:24 +00:00
|
|
|
std::atomic<ID3D11InputLayout*> m_layout{nullptr};
|
2017-07-20 05:25:31 +00:00
|
|
|
};
|
|
|
|
|
2015-11-01 21:54:41 +00:00
|
|
|
class VertexManager : public VertexManagerBase
|
2010-10-03 00:41:06 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
VertexManager();
|
|
|
|
~VertexManager();
|
2010-10-03 00:41:06 +00:00
|
|
|
|
2017-02-18 08:14:30 +00:00
|
|
|
std::unique_ptr<NativeVertexFormat>
|
|
|
|
CreateNativeVertexFormat(const PortableVertexDeclaration& vtx_decl) override;
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void CreateDeviceObjects() override;
|
|
|
|
void DestroyDeviceObjects() override;
|
2012-10-20 13:22:15 +00:00
|
|
|
|
2014-01-23 14:27:18 +00:00
|
|
|
protected:
|
2016-06-24 08:43:46 +00:00
|
|
|
void ResetBuffer(u32 stride) override;
|
|
|
|
u16* GetIndexBuffer() { return &LocalIBuffer[0]; }
|
2012-10-20 13:22:15 +00:00
|
|
|
private:
|
2016-06-24 08:43:46 +00:00
|
|
|
void PrepareDrawBuffers(u32 stride);
|
|
|
|
void Draw(u32 stride);
|
|
|
|
// temp
|
2016-12-28 00:37:41 +00:00
|
|
|
void vFlush() override;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
u32 m_vertexDrawOffset;
|
|
|
|
u32 m_indexDrawOffset;
|
|
|
|
u32 m_currentBuffer;
|
|
|
|
u32 m_bufferCursor;
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
MAX_BUFFER_COUNT = 2
|
|
|
|
};
|
|
|
|
ID3D11Buffer* m_buffers[MAX_BUFFER_COUNT];
|
|
|
|
|
|
|
|
std::vector<u8> LocalVBuffer;
|
|
|
|
std::vector<u16> LocalIBuffer;
|
2010-10-03 00:41:06 +00:00
|
|
|
};
|
2010-06-13 19:50:06 +00:00
|
|
|
|
|
|
|
} // namespace
|