2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-02-13 00:52:07 +00:00
|
|
|
|
|
|
|
#pragma once
|
2016-01-17 21:54:31 +00:00
|
|
|
|
2015-02-13 00:52:07 +00:00
|
|
|
#include "Common/Arm64Emitter.h"
|
2016-01-17 21:54:31 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2015-02-13 00:52:07 +00:00
|
|
|
#include "VideoCommon/VertexLoaderBase.h"
|
|
|
|
|
2016-01-31 19:51:55 +00:00
|
|
|
class DataReader;
|
2021-02-08 23:22:10 +00:00
|
|
|
enum class VertexComponentFormat;
|
|
|
|
enum class ComponentFormat;
|
|
|
|
enum class ColorFormat;
|
2021-06-20 20:47:57 +00:00
|
|
|
enum class CPArray : u8;
|
2016-01-31 19:51:55 +00:00
|
|
|
|
2015-02-13 00:52:07 +00:00
|
|
|
class VertexLoaderARM64 : public VertexLoaderBase, public Arm64Gen::ARM64CodeBlock
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VertexLoaderARM64(const TVtxDesc& vtx_desc, const VAT& vtx_att);
|
|
|
|
|
|
|
|
protected:
|
2015-04-06 09:44:13 +00:00
|
|
|
int RunVertices(DataReader src, DataReader dst, int count) override;
|
2015-02-13 00:52:07 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
u32 m_src_ofs = 0;
|
|
|
|
u32 m_dst_ofs = 0;
|
|
|
|
Arm64Gen::FixupBranch m_skip_vertex;
|
|
|
|
Arm64Gen::ARM64FloatEmitter m_float_emit;
|
2021-06-20 20:47:57 +00:00
|
|
|
void GetVertexAddr(CPArray array, VertexComponentFormat attribute, Arm64Gen::ARM64Reg reg);
|
|
|
|
s32 GetAddressImm(CPArray array, VertexComponentFormat attribute, Arm64Gen::ARM64Reg reg,
|
|
|
|
u32 align);
|
2021-02-08 23:22:10 +00:00
|
|
|
int ReadVertex(VertexComponentFormat attribute, ComponentFormat format, int count_in,
|
|
|
|
int count_out, bool dequantize, u8 scaling_exponent,
|
|
|
|
AttributeFormat* native_format, s32 offset = -1);
|
|
|
|
void ReadColor(VertexComponentFormat attribute, ColorFormat format, s32 offset);
|
2015-02-13 00:52:07 +00:00
|
|
|
void GenerateVertexLoader();
|
|
|
|
};
|