2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-18 02:08:10 +03:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 06:29:41 +03:00
|
|
|
// Refer to the license.txt file included.
|
2010-07-06 19:16:07 +03:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2010-07-06 19:16:07 +03:00
|
|
|
|
2015-10-09 21:50:36 +03:00
|
|
|
#include <vector>
|
2014-12-22 18:25:05 +02:00
|
|
|
|
2014-09-08 04:06:58 +03:00
|
|
|
#include "Common/CommonTypes.h"
|
2010-07-06 19:16:07 +03:00
|
|
|
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "VideoBackends/Software/NativeVertexFormat.h"
|
2016-09-18 19:05:10 +03:00
|
|
|
#include "VideoBackends/Software/SetupUnit.h"
|
2010-07-06 19:16:07 +03:00
|
|
|
|
2015-10-09 21:50:36 +03:00
|
|
|
#include "VideoCommon/VertexManagerBase.h"
|
2014-12-07 22:51:45 +02:00
|
|
|
|
2015-10-09 21:50:36 +03:00
|
|
|
class SWVertexLoader : public VertexManagerBase
|
2010-07-06 19:16:07 +03:00
|
|
|
{
|
2015-10-09 21:50:36 +03:00
|
|
|
public:
|
2016-06-24 11:43:46 +03:00
|
|
|
SWVertexLoader();
|
|
|
|
~SWVertexLoader();
|
2013-04-14 06:54:02 +03:00
|
|
|
|
2016-06-24 11:43:46 +03:00
|
|
|
NativeVertexFormat* CreateNativeVertexFormat(const PortableVertexDeclaration& vdec) override;
|
2015-10-09 21:50:36 +03:00
|
|
|
|
|
|
|
protected:
|
2016-06-24 11:43:46 +03:00
|
|
|
void ResetBuffer(u32 stride) override;
|
|
|
|
u16* GetIndexBuffer() { return &LocalIBuffer[0]; }
|
2015-10-09 21:50:36 +03:00
|
|
|
private:
|
2016-12-28 02:37:41 +02:00
|
|
|
void vFlush() override;
|
2016-06-24 11:43:46 +03:00
|
|
|
std::vector<u8> LocalVBuffer;
|
|
|
|
std::vector<u16> LocalIBuffer;
|
2013-04-14 06:54:02 +03:00
|
|
|
|
2016-06-24 11:43:46 +03:00
|
|
|
InputVertexData m_Vertex;
|
2013-04-14 06:54:02 +03:00
|
|
|
|
2016-06-24 11:43:46 +03:00
|
|
|
void ParseVertex(const PortableVertexDeclaration& vdec, int index);
|
2013-04-14 06:54:02 +03:00
|
|
|
|
2016-09-18 19:05:10 +03:00
|
|
|
SetupUnit m_SetupUnit;
|
2010-07-06 19:16:07 +03:00
|
|
|
|
2016-06-24 11:43:46 +03:00
|
|
|
bool m_TexGenSpecialCase;
|
2010-07-06 19:16:07 +03:00
|
|
|
|
|
|
|
public:
|
2016-06-24 11:43:46 +03:00
|
|
|
void SetFormat(u8 attributeIndex, u8 primitiveType);
|
2010-07-06 19:16:07 +03:00
|
|
|
};
|