2015-05-24 04:32:32 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-01-15 00:46:23 +00:00
|
|
|
#include "Common/x64Emitter.h"
|
|
|
|
#include "VideoCommon/VertexLoaderBase.h"
|
|
|
|
|
|
|
|
class VertexLoaderX64 : public VertexLoaderBase, public Gen::X64CodeBlock
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VertexLoaderX64(const TVtxDesc& vtx_desc, const VAT& vtx_att);
|
|
|
|
|
|
|
|
protected:
|
2015-01-18 22:20:44 +00:00
|
|
|
std::string GetName() const override { return "VertexLoaderX64"; }
|
2015-03-18 10:26:21 +00:00
|
|
|
bool IsInitialized() override { return true; }
|
2015-04-06 09:44:13 +00:00
|
|
|
int RunVertices(DataReader src, DataReader dst, int count) override;
|
2015-01-15 00:46:23 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
u32 m_src_ofs = 0;
|
|
|
|
u32 m_dst_ofs = 0;
|
|
|
|
Gen::FixupBranch m_skip_vertex;
|
|
|
|
Gen::OpArg GetVertexAddr(int array, u64 attribute);
|
2015-01-20 01:12:03 +00:00
|
|
|
int ReadVertex(Gen::OpArg data, u64 attribute, int format, int count_in, int count_out, bool dequantize, u8 scaling_exponent, AttributeFormat* native_format);
|
2015-01-20 00:58:11 +00:00
|
|
|
void ReadColor(Gen::OpArg data, u64 attribute, int format);
|
2015-01-15 00:46:23 +00:00
|
|
|
void GenerateVertexLoader();
|
|
|
|
};
|