2015-05-24 06:32:32 +02:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-05-24 06:32:32 +02:00
|
|
|
|
2019-05-29 12:35:22 +02:00
|
|
|
#pragma once
|
|
|
|
|
2016-01-17 22:54:31 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2015-01-15 01:46:23 +01:00
|
|
|
#include "Common/x64Emitter.h"
|
|
|
|
#include "VideoCommon/VertexLoaderBase.h"
|
|
|
|
|
2021-02-09 00:22:10 +01:00
|
|
|
enum class VertexComponentFormat;
|
|
|
|
enum class ComponentFormat;
|
|
|
|
enum class ColorFormat;
|
|
|
|
|
2015-01-15 01:46:23 +01:00
|
|
|
class VertexLoaderX64 : public VertexLoaderBase, public Gen::X64CodeBlock
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VertexLoaderX64(const TVtxDesc& vtx_desc, const VAT& vtx_att);
|
|
|
|
|
|
|
|
protected:
|
2015-04-06 11:44:13 +02:00
|
|
|
int RunVertices(DataReader src, DataReader dst, int count) override;
|
2015-01-15 01:46:23 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
u32 m_src_ofs = 0;
|
|
|
|
u32 m_dst_ofs = 0;
|
|
|
|
Gen::FixupBranch m_skip_vertex;
|
2021-02-09 00:22:10 +01:00
|
|
|
Gen::OpArg GetVertexAddr(int array, VertexComponentFormat attribute);
|
|
|
|
int ReadVertex(Gen::OpArg data, VertexComponentFormat attribute, ComponentFormat format,
|
|
|
|
int count_in, int count_out, bool dequantize, u8 scaling_exponent,
|
|
|
|
AttributeFormat* native_format);
|
|
|
|
void ReadColor(Gen::OpArg data, VertexComponentFormat attribute, ColorFormat format);
|
2015-01-15 01:46:23 +01:00
|
|
|
void GenerateVertexLoader();
|
|
|
|
};
|